diff --git a/.Lib9c.Benchmarks/Program.cs b/.Lib9c.Benchmarks/Program.cs index 7992f113c6..6b4126dd01 100644 --- a/.Lib9c.Benchmarks/Program.cs +++ b/.Lib9c.Benchmarks/Program.cs @@ -1,26 +1,19 @@ using System; using System.Collections.Generic; -using System.Collections.Immutable; using System.IO; using System.Linq; using System.Security.Cryptography; -using Bencodex.Types; using Libplanet.Action; -using Libplanet.Action.State; using Libplanet.Blockchain; using Libplanet.Blockchain.Policies; -using Libplanet.Common; -using Libplanet.Crypto; using Libplanet.RocksDBStore; using Libplanet.Store; using Libplanet.Store.Trie; -using Libplanet.Types.Assets; using Libplanet.Types.Blocks; using Nekoyume.Action.Loader; using Nekoyume.Blockchain; using Nekoyume.Blockchain.Policy; using Serilog; -using Serilog.Events; namespace Lib9c.Benchmarks { @@ -89,7 +82,7 @@ static void Main(string[] args) var stateStore = new TrieStateStore(stateKeyValueStore); var actionEvaluator = new ActionEvaluator( _ => policy.BlockAction, - new BlockChainStates(store, stateStore), + stateStore, new NCActionLoader()); var chain = new BlockChain( policy, @@ -128,15 +121,7 @@ static void Main(string[] args) block.Transactions.Count() ); - chain.DetermineBlockStateRootHash(block, out IReadOnlyList blockEvals); - SetStates( - chain.Id, - store, - stateStore, - block, - blockEvals.ToArray(), - buildStateReferences: true - ); + chain.DetermineBlockStateRootHash(block, out IReadOnlyList blockEvals); txs += block.Transactions.LongCount(); actions += block.Transactions.Sum(tx => tx.Actions is { } customActions ? customActions.LongCount() : 0); @@ -151,70 +136,5 @@ static void Main(string[] args) Console.WriteLine("Average per action\t{0}ms", execActionsTotalMilliseconds / actions); Console.WriteLine("Total elapsed\t{0}", ended - started); } - - // Copied from BlockChain.DetermineBlockStateRootHash(). - private static void SetStates( - Guid chainId, - IStore store, - IStateStore stateStore, - Block block, - IReadOnlyList actionEvaluations, - bool buildStateReferences - ) - { - IImmutableDictionary totalDelta = actionEvaluations.GetRawTotalDelta(); - - if (!stateStore.ContainsStateRoot(block.StateRootHash)) - { - HashDigest? prevStateRootHash = store.GetStateRootHash(block.PreviousHash); - ITrie stateRoot = stateStore.Commit(prevStateRootHash, totalDelta); - } - } - - // Copied from ActionEvaluationsExtensions.GetTotalDelta(). - private static ImmutableDictionary GetTotalDelta( - IReadOnlyList actionEvaluations, - Func toStateKey, - Func<(Address, Currency), string> toFungibleAssetKey) - { - IImmutableSet
stateUpdatedAddresses = actionEvaluations - .SelectMany(a => a.OutputState.Delta.StateUpdatedAddresses) - .ToImmutableHashSet(); - IImmutableSet<(Address, Currency)> updatedFungibleAssets = actionEvaluations - .SelectMany(a => a.OutputState.Delta.UpdatedFungibleAssets) - .ToImmutableHashSet(); - - IAccount lastStates = actionEvaluations.Count > 0 - ? actionEvaluations[actionEvaluations.Count - 1].OutputState - : null; - ImmutableDictionary totalDelta = - stateUpdatedAddresses.ToImmutableDictionary( - toStateKey, - a => lastStates?.GetState(a) - ).SetItems( - updatedFungibleAssets.Select(pair => - new KeyValuePair( - toFungibleAssetKey(pair), - new Bencodex.Types.Integer( - lastStates?.GetBalance(pair.Item1, pair.Item2).RawValue ?? 0 - ) - ) - ) - ); - - return totalDelta; - } - - // Copied from KeyConverters.ToStateKey(). - private static string ToStateKey(Address address) => address.ToHex().ToLowerInvariant(); - - // Copied from KeyConverters.ToFungibleAssetKey(). - private static string ToFungibleAssetKey(Address address, Currency currency) => - "_" + address.ToHex().ToLowerInvariant() + - "_" + ByteUtil.Hex(currency.Hash.ByteArray).ToLowerInvariant(); - - // Copied from KeyConverters.ToFungibleAssetKey(). - private static string ToFungibleAssetKey((Address, Currency) pair) => - ToFungibleAssetKey(pair.Item1, pair.Item2); } } diff --git a/.Lib9c.DevExtensions.Tests/Action/CreateOrReplaceAvatarTest.cs b/.Lib9c.DevExtensions.Tests/Action/CreateOrReplaceAvatarTest.cs index aa04d238e3..0ab36e8230 100644 --- a/.Lib9c.DevExtensions.Tests/Action/CreateOrReplaceAvatarTest.cs +++ b/.Lib9c.DevExtensions.Tests/Action/CreateOrReplaceAvatarTest.cs @@ -5,6 +5,7 @@ using System.Linq; using Bencodex.Types; using Lib9c.DevExtensions.Action; +using Lib9c.Tests; using Lib9c.Tests.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -24,10 +25,11 @@ namespace Lib9c.DevExtensions.Tests.Action public class CreateOrReplaceAvatarTest { private readonly IAccount _initialStates; + private readonly TableSheets _tableSheets; public CreateOrReplaceAvatarTest() { - _initialStates = new Lib9c.Tests.Action.MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 var ncgCurrency = Currency.Legacy("NCG", 2, null); @@ -36,6 +38,7 @@ public CreateOrReplaceAvatarTest() GoldCurrencyState.Address, new GoldCurrencyState(ncgCurrency).Serialize()); var sheets = TableSheetsImporter.ImportSheets(); + _tableSheets = new TableSheets(sheets); foreach (var (key, value) in sheets) { _initialStates = _initialStates.SetState( @@ -69,16 +72,8 @@ public CreateOrReplaceAvatarTest() int.MaxValue, new[] { - (10111000, 0), - (10111000, 21), // 21: See also EnhancementCostSheetV2.csv - (10211000, 0), - (10211000, 21), - (10311000, 0), - (10311000, 21), - (10411000, 0), - (10411000, 21), - (10511000, 0), - (10511000, 21), + (ItemSubType.Weapon, 0), + (ItemSubType.Weapon, 21), // 21: See also EnhancementCostSheetV2.csv }, new[] { @@ -291,12 +286,22 @@ public void Serialize( int ear, int tail, int level, - (int equipmentId, int level)[]? equipments, + (ItemSubType itemSubType, int level)[]? equipmentData, (int consumableId, int count)[]? foods, int[]? costumeIds, (int runeId, int level)[]? runes, (int stageId, int[] crystalRandomBuffIds)? crystalRandomBuff) { + var equipments = new List<(int, int)>(); + if (!(equipmentData is null)) + { + foreach (var data in equipmentData) + { + var row = _tableSheets.EquipmentItemRecipeSheet.Values.First(r => + r.ItemSubType == data.itemSubType); + equipments.Add((row.ResultEquipmentId, data.level)); + } + } var action = new CreateOrReplaceAvatar( avatarIndex, name, @@ -305,7 +310,7 @@ public void Serialize( ear, tail, level, - equipments, + equipments.ToArray(), foods, costumeIds, runes, @@ -348,12 +353,22 @@ public void Execute_Success( int ear, int tail, int level, - (int equipmentId, int level)[]? equipments, + (ItemSubType itemSubType, int level)[]? equipmentData, (int consumableId, int count)[]? foods, int[]? costumeIds, (int runeId, int level)[]? runes, (int stageId, int[] crystalRandomBuffIds)? crystalRandomBuff) { + var equipments = new List<(int, int)>(); + if (!(equipmentData is null)) + { + foreach (var data in equipmentData) + { + var row = _tableSheets.EquipmentItemRecipeSheet.Values.First(r => + r.ItemSubType == data.itemSubType); + equipments.Add((row.ResultEquipmentId, data.level)); + } + } var agentAddr = new PrivateKey().ToAddress(); Execute( _initialStates, @@ -366,7 +381,7 @@ public void Execute_Success( ear, tail, level, - equipments, + equipments.ToArray(), foods, costumeIds, runes, @@ -444,7 +459,7 @@ private static void Execute( { PreviousState = previousStates, Signer = agentAddr, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); @@ -478,7 +493,7 @@ private static void Execute( var recipe = equipmentItemRecipeSheet.OrderedList!.First(r => r.ResultEquipmentId == equipment.Id); Assert.NotNull(recipe); - Assert.Equal(3, recipe.SubRecipeIds.Count); + Assert.Equal(2, recipe.SubRecipeIds.Count); Assert.True(equipmentItemSubRecipeSheetV2.TryGetValue( recipe.SubRecipeIds[1], out var subRecipe)); diff --git a/.Lib9c.DevExtensions.Tests/Action/Factory/CreateOrReplaceAvatarFactoryTest.cs b/.Lib9c.DevExtensions.Tests/Action/Factory/CreateOrReplaceAvatarFactoryTest.cs index 68b42140e7..2ff7e3035a 100644 --- a/.Lib9c.DevExtensions.Tests/Action/Factory/CreateOrReplaceAvatarFactoryTest.cs +++ b/.Lib9c.DevExtensions.Tests/Action/Factory/CreateOrReplaceAvatarFactoryTest.cs @@ -1,14 +1,24 @@ #nullable enable using System; +using System.Collections.Generic; using System.Linq; using Lib9c.DevExtensions.Action.Factory; +using Lib9c.Tests; +using Nekoyume.Model.Item; using Xunit; namespace Lib9c.DevExtensions.Tests.Action.Factory { public class CreateOrReplaceAvatarFactoryTest { + private readonly TableSheets _tableSheets; + + public CreateOrReplaceAvatarFactoryTest() + { + _tableSheets = new TableSheets(TableSheetsImporter.ImportSheets()); + } + [Theory] [MemberData( nameof(CreateOrReplaceAvatarTest.Get_Execute_Success_MemberData), @@ -22,12 +32,23 @@ public void TryGetByBlockIndex_Success( int ear, int tail, int level, - (int equipmentId, int level)[]? equipments, + (ItemSubType itemSubType, int level)[]? equipmentData, (int consumableId, int count)[]? foods, int[]? costumeIds, (int runeId, int level)[]? runes, (int stageId, int[] crystalRandomBuffIds)? crystalRandomBuff) { + var equipments = new List<(int, int)>(); + if (!(equipmentData is null)) + { + foreach (var data in equipmentData) + { + var row = _tableSheets.EquipmentItemRecipeSheet.Values.First(r => + r.ItemSubType == data.itemSubType); + equipments.Add((row.ResultEquipmentId, data.level)); + } + } + var (e, r) = CreateOrReplaceAvatarFactory .TryGetByBlockIndex( blockIndex, @@ -38,7 +59,7 @@ public void TryGetByBlockIndex_Success( ear, tail, level, - equipments, + equipments.ToArray(), foods, costumeIds, runes, diff --git a/.Lib9c.DevExtensions.Tests/Action/FaucetCurrencyTest.cs b/.Lib9c.DevExtensions.Tests/Action/FaucetCurrencyTest.cs index e830cb1d3e..c74f835a70 100644 --- a/.Lib9c.DevExtensions.Tests/Action/FaucetCurrencyTest.cs +++ b/.Lib9c.DevExtensions.Tests/Action/FaucetCurrencyTest.cs @@ -31,7 +31,7 @@ public FaucetCurrencyTest(ITestOutputHelper outputHelper) _crystal = Currency.Legacy("CRYSTAL", 18, null); #pragma warning restore CS0618 - _initialState = new MockStateDelta( + _initialState = new Account( MockState.Empty .AddBalance(GoldCurrencyState.Address, _ncg * int.MaxValue)); diff --git a/.Lib9c.DevExtensions.Tests/Action/FaucetRuneTest.cs b/.Lib9c.DevExtensions.Tests/Action/FaucetRuneTest.cs index 4bdb17d385..d9a6e0a2a0 100644 --- a/.Lib9c.DevExtensions.Tests/Action/FaucetRuneTest.cs +++ b/.Lib9c.DevExtensions.Tests/Action/FaucetRuneTest.cs @@ -32,7 +32,7 @@ public FaucetRuneTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new Lib9c.Tests.Action.MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { diff --git a/.Lib9c.StateService.Shared/RemoteEvaluationRequest.cs b/.Lib9c.StateService.Shared/RemoteEvaluationRequest.cs index e5cee6ebb3..f2b3409160 100644 --- a/.Lib9c.StateService.Shared/RemoteEvaluationRequest.cs +++ b/.Lib9c.StateService.Shared/RemoteEvaluationRequest.cs @@ -3,4 +3,6 @@ namespace Lib9c.StateService.Shared; public class RemoteEvaluationRequest { public byte[] PreEvaluationBlock { get; set; } + + public byte[] BaseStateRootHash { get; set; } } diff --git a/.Lib9c.StateService/Controllers/RemoteEvaluationController.cs b/.Lib9c.StateService/Controllers/RemoteEvaluationController.cs index 75adcc99ae..db9eb743cb 100644 --- a/.Lib9c.StateService/Controllers/RemoteEvaluationController.cs +++ b/.Lib9c.StateService/Controllers/RemoteEvaluationController.cs @@ -1,9 +1,11 @@ +using System.Security.Cryptography; using Bencodex; using Bencodex.Types; using Lib9c.StateService.Shared; using Libplanet.Action; -using Libplanet.Action.State; +using Libplanet.Common; using Libplanet.Extensions.ActionEvaluatorCommonComponents; +using Libplanet.Store; using Microsoft.AspNetCore.Mvc; using Nekoyume.Action; using Nekoyume.Action.Loader; @@ -14,16 +16,19 @@ namespace Lib9c.StateService.Controllers; [Route("/evaluation")] public class RemoteEvaluationController : ControllerBase { - private readonly IBlockChainStates _blockChainStates; + private readonly IActionEvaluator _actionEvaluator; private readonly ILogger _logger; private readonly Codec _codec; public RemoteEvaluationController( - IBlockChainStates blockChainStates, + IStateStore stateStore, ILogger logger, Codec codec) { - _blockChainStates = blockChainStates; + _actionEvaluator = new ActionEvaluator( + _ => new RewardGold(), + stateStore, + new NCActionLoader()); _logger = logger; _codec = codec; } @@ -37,15 +42,20 @@ public ActionResult GetEvaluation([FromBody] RemoteEva return StatusCode(StatusCodes.Status400BadRequest); } + var decodedStateRootHash = _codec.Decode(request.BaseStateRootHash); + if (decodedStateRootHash is not Binary binary) + { + return StatusCode(StatusCodes.Status400BadRequest); + } + var preEvaluationBlock = PreEvaluationBlockMarshaller.Unmarshal(dictionary); - var actionEvaluator = - new ActionEvaluator( - context => new RewardGold(), - _blockChainStates, - new NCActionLoader()); + var baseStateRootHash = new HashDigest(binary); + return Ok(new RemoteEvaluationResponse { - Evaluations = actionEvaluator.Evaluate(preEvaluationBlock).Select(ActionEvaluationMarshaller.Serialize) + Evaluations = _actionEvaluator + .Evaluate(preEvaluationBlock, baseStateRootHash) + .Select(ActionEvaluationMarshaller.Serialize) .ToArray(), }); } diff --git a/.Lib9c.StateService/Lib9c.StateService.csproj b/.Lib9c.StateService/Lib9c.StateService.csproj index c3e36d7a0c..92810d8d38 100644 --- a/.Lib9c.StateService/Lib9c.StateService.csproj +++ b/.Lib9c.StateService/Lib9c.StateService.csproj @@ -12,9 +12,9 @@ - + diff --git a/.Lib9c.StateService/Program.cs b/.Lib9c.StateService/Program.cs index a08391d0a1..ba2b8de7bd 100644 --- a/.Lib9c.StateService/Program.cs +++ b/.Lib9c.StateService/Program.cs @@ -1,6 +1,6 @@ using Bencodex; -using Libplanet.Action.State; -using Libplanet.Extensions.RemoteBlockChainStates; +using Libplanet.RocksDBStore; +using Libplanet.Store; var builder = WebApplication.CreateBuilder(args); @@ -15,11 +15,10 @@ builder.Services.AddSingleton(); -builder.Services.AddSingleton(_ => +builder.Services.AddSingleton(_ => { - const string DefaultEndpoint = "http://localhost:31280/graphql/explorer"; - var endpoint = builder.Configuration.GetValue("RemoteBlockChainStatesEndpoint") ?? DefaultEndpoint; - return new RemoteBlockChainStates(new Uri(endpoint)); + var path = builder.Configuration.GetValue("StateStorePath"); + return new TrieStateStore(new RocksDBKeyValueStore(path)); }); var app = builder.Build(); diff --git a/.Lib9c.Tests/Action/AccountStateDeltaExtensionsTest.cs b/.Lib9c.Tests/Action/AccountStateDeltaExtensionsTest.cs index 81ce6f3345..f8fcc75dfa 100644 --- a/.Lib9c.Tests/Action/AccountStateDeltaExtensionsTest.cs +++ b/.Lib9c.Tests/Action/AccountStateDeltaExtensionsTest.cs @@ -45,7 +45,7 @@ public AccountStateDeltaExtensionsTest() public void SetWorldBossKillReward(int level, int expectedRune, int expectedCrystal, Type exc) { var context = new ActionContext(); - IAccount states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); var rewardInfoAddress = new PrivateKey().ToAddress(); var rewardRecord = new WorldBossKillRewardRecord(); for (int i = 0; i < level; i++) @@ -105,7 +105,7 @@ public void SetWorldBossKillReward(int level, int expectedRune, int expectedCrys [Fact] public void SetCouponWallet() { - IAccount states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); var guid1 = new Guid("6856AE42-A820-4041-92B0-5D7BAA52F2AA"); var guid2 = new Guid("701BA698-CCB9-4FC7-B88F-7CB8C707D135"); var guid3 = new Guid("910296E7-34E4-45D7-9B4E-778ED61F278B"); @@ -168,7 +168,7 @@ public void Mead(int agentBalance) var mead = Currencies.Mead; var price = RequestPledge.DefaultRefillMead * mead; ActionContext context = new ActionContext(); - IAccount states = new MockStateDelta() + IAccount states = new Account(MockState.Empty) .SetState( agentContractAddress, List.Empty.Add(patron.Serialize()).Add(true.Serialize())) diff --git a/.Lib9c.Tests/Action/AccountStateViewExtensionsTest.cs b/.Lib9c.Tests/Action/AccountStateViewExtensionsTest.cs index 289d39373a..1b7efed0fd 100644 --- a/.Lib9c.Tests/Action/AccountStateViewExtensionsTest.cs +++ b/.Lib9c.Tests/Action/AccountStateViewExtensionsTest.cs @@ -48,8 +48,8 @@ public AccountStateViewExtensionsTest() [Fact] public void TryGetAvatarState() { - var states = new MockStateDelta(); - states = (MockStateDelta)states.SetState(_avatarAddress, _avatarState.Serialize()); + IAccount states = new Account(MockState.Empty); + states = states.SetState(_avatarAddress, _avatarState.Serialize()); Assert.True(states.TryGetAvatarState(_agentAddress, _avatarAddress, out var avatarState2)); Assert.Equal(_avatarAddress, avatarState2.address); @@ -59,7 +59,7 @@ public void TryGetAvatarState() [Fact] public void TryGetAvatarStateEmptyAddress() { - var states = new MockStateDelta(); + var states = new Account(MockState.Empty); Assert.False(states.TryGetAvatarState(default, default, out _)); } @@ -67,7 +67,7 @@ public void TryGetAvatarStateEmptyAddress() [Fact] public void TryGetAvatarStateAddressKeyNotFoundException() { - var states = new MockStateDelta().SetState(default, Dictionary.Empty); + var states = new Account(MockState.Empty).SetState(default, Dictionary.Empty); Assert.False(states.TryGetAvatarState(default, default, out _)); } @@ -75,7 +75,7 @@ public void TryGetAvatarStateAddressKeyNotFoundException() [Fact] public void TryGetAvatarStateKeyNotFoundException() { - var states = new MockStateDelta() + var states = new Account(MockState.Empty) .SetState( default, Dictionary.Empty @@ -88,7 +88,7 @@ public void TryGetAvatarStateKeyNotFoundException() [Fact] public void TryGetAvatarStateInvalidCastException() { - var states = new MockStateDelta().SetState(default, default(Text)); + var states = new Account(MockState.Empty).SetState(default, default(Text)); Assert.False(states.TryGetAvatarState(default, default, out _)); } @@ -96,7 +96,7 @@ public void TryGetAvatarStateInvalidCastException() [Fact] public void TryGetAvatarStateInvalidAddress() { - var states = new MockStateDelta().SetState(default, _avatarState.Serialize()); + var states = new Account(MockState.Empty).SetState(default, _avatarState.Serialize()); Assert.False(states.TryGetAvatarState(Addresses.GameConfig, _avatarAddress, out _)); } @@ -104,8 +104,8 @@ public void TryGetAvatarStateInvalidAddress() [Fact] public void GetAvatarStateV2() { - var states = new MockStateDelta(); - states = (MockStateDelta)states + IAccount states = new Account(MockState.Empty); + states = states .SetState(_avatarAddress, _avatarState.SerializeV2()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), _avatarState.inventory.Serialize()) .SetState(_avatarAddress.Derive(LegacyWorldInformationKey), _avatarState.worldInformation.Serialize()) @@ -123,13 +123,13 @@ public void GetAvatarStateV2() [InlineData(LegacyQuestListKey)] public void GetAvatarStateV2_Throw_FailedLoadStateException(string key) { - var states = new MockStateDelta(); - states = (MockStateDelta)states + IAccount states = new Account(MockState.Empty); + states = states .SetState(_avatarAddress, _avatarState.SerializeV2()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), _avatarState.inventory.Serialize()) .SetState(_avatarAddress.Derive(LegacyWorldInformationKey), _avatarState.worldInformation.Serialize()) .SetState(_avatarAddress.Derive(LegacyQuestListKey), _avatarState.questList.Serialize()); - states = (MockStateDelta)states.SetState(_avatarAddress.Derive(key), null); + states = states.SetState(_avatarAddress.Derive(key), null); var exc = Assert.Throws(() => states.GetAvatarStateV2(_avatarAddress)); Assert.Contains(key, exc.Message); } @@ -139,15 +139,15 @@ public void GetAvatarStateV2_Throw_FailedLoadStateException(string key) [InlineData(false)] public void TryGetAvatarStateV2(bool backward) { - var states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); if (backward) { - states = (MockStateDelta)states + states = states .SetState(_avatarAddress, _avatarState.Serialize()); } else { - states = (MockStateDelta)states + states = states .SetState(_avatarAddress, _avatarState.SerializeV2()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), _avatarState.inventory.Serialize()) .SetState(_avatarAddress.Derive(LegacyWorldInformationKey), _avatarState.worldInformation.Serialize()) @@ -163,16 +163,16 @@ public void TryGetAvatarStateV2(bool backward) [InlineData(false)] public void TryGetAgentAvatarStatesV2(bool backward) { - var states = new MockStateDelta().SetState(_agentAddress, _agentState.Serialize()); + IAccount states = new Account(MockState.Empty).SetState(_agentAddress, _agentState.Serialize()); if (backward) { - states = (MockStateDelta)states + states = states .SetState(_avatarAddress, _avatarState.Serialize()); } else { - states = (MockStateDelta)states + states = states .SetState(_avatarAddress, _avatarState.SerializeV2()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), _avatarState.inventory.Serialize()) .SetState(_avatarAddress.Derive(LegacyWorldInformationKey), _avatarState.worldInformation.Serialize()) @@ -186,7 +186,7 @@ public void TryGetAgentAvatarStatesV2(bool backward) [Fact] public void GetStatesAsDict() { - IAccount states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); var dict = new Dictionary { { new PrivateKey().ToAddress(), Null.Value }, @@ -213,7 +213,7 @@ public void GetStatesAsDict() [Fact] public void GetSheets() { - IAccount states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); SheetsExtensionsTest.InitSheets( states, out _, @@ -240,7 +240,7 @@ public void GetSheets() [InlineData(true)] public void GetCrystalCostState(bool exist) { - IAccount state = new MockStateDelta(); + IAccount state = new Account(MockState.Empty); int expectedCount = exist ? 1 : 0; FungibleAssetValue expectedCrystal = exist ? 100 * CrystalCalculator.CRYSTAL @@ -273,7 +273,7 @@ public void GetCrystalCostStates(long blockIndex, bool previousWeeklyExist) Address previousCostAddress = Addresses.GetWeeklyCrystalCostAddress(weeklyIndex - 1); Address beforePreviousCostAddress = Addresses.GetWeeklyCrystalCostAddress(weeklyIndex - 2); var crystalCostState = new CrystalCostState(default, 100 * CrystalCalculator.CRYSTAL); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(dailyCostAddress, crystalCostState.Serialize()) .SetState(weeklyCostAddress, crystalCostState.Serialize()) .SetState(previousCostAddress, crystalCostState.Serialize()) @@ -303,7 +303,7 @@ public void GetCrystalCostStates(long blockIndex, bool previousWeeklyExist) [Fact] public void GetCouponWallet() { - IAccount states = new MockStateDelta(); + IAccount states = new Account(MockState.Empty); var guid1 = new Guid("6856AE42-A820-4041-92B0-5D7BAA52F2AA"); var guid2 = new Guid("701BA698-CCB9-4FC7-B88F-7CB8C707D135"); var guid3 = new Guid("910296E7-34E4-45D7-9B4E-778ED61F278B"); diff --git a/.Lib9c.Tests/Action/ActionContext.cs b/.Lib9c.Tests/Action/ActionContext.cs index 123b782230..62ba8ded68 100644 --- a/.Lib9c.Tests/Action/ActionContext.cs +++ b/.Lib9c.Tests/Action/ActionContext.cs @@ -5,13 +5,13 @@ namespace Lib9c.Tests.Action using Libplanet.Action.State; using Libplanet.Common; using Libplanet.Crypto; - using Libplanet.Types.Assets; using Libplanet.Types.Blocks; using Libplanet.Types.Tx; public class ActionContext : IActionContext { private long _gasUsed; + private IRandom _random = null; public BlockHash? GenesisHash { get; set; } @@ -31,39 +31,27 @@ public class ActionContext : IActionContext public IAccount PreviousState { get; set; } - public IRandom Random { get; set; } + public int RandomSeed { get; set; } public HashDigest? PreviousStateRootHash { get; set; } public bool BlockAction { get; } - public bool IsNativeToken(Currency currency) => false; - public void UseGas(long gas) { _gasUsed += gas; } - public IActionContext GetUnconsumedContext() - { - // Unable to determine if Random has ever been consumed... - return new ActionContext - { - Signer = Signer, - TxId = TxId, - Miner = Miner, - BlockHash = BlockHash, - BlockIndex = BlockIndex, - BlockProtocolVersion = BlockProtocolVersion, - Rehearsal = Rehearsal, - PreviousState = PreviousState, - Random = Random, - PreviousStateRootHash = PreviousStateRootHash, - }; - } + public IRandom GetRandom() => _random ?? new TestRandom(RandomSeed); public long GasUsed() => _gasUsed; public long GasLimit() => 0; + + // FIXME: Temporary measure to allow inheriting already mutated IRandom. + public void SetRandom(IRandom random) + { + _random = random; + } } } diff --git a/.Lib9c.Tests/Action/ActionContextExtensionsTest.cs b/.Lib9c.Tests/Action/ActionContextExtensionsTest.cs index a50704a852..d135eb7354 100644 --- a/.Lib9c.Tests/Action/ActionContextExtensionsTest.cs +++ b/.Lib9c.Tests/Action/ActionContextExtensionsTest.cs @@ -2,6 +2,7 @@ namespace Lib9c.Tests.Action { using System.Collections.Generic; using Libplanet.Action; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -141,7 +142,7 @@ public static IEnumerable IsPreviewNetTestcases() [MemberData(nameof(IsMainNetTestcases))] public void IsMainNet(GoldCurrencyState goldCurrencyState, bool expected) { - var state = new MockStateDelta().SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()); + var state = new Account(MockState.Empty).SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()); IActionContext context = new ActionContext { PreviousState = state, diff --git a/.Lib9c.Tests/Action/ActionEvaluationTest.cs b/.Lib9c.Tests/Action/ActionEvaluationTest.cs index ad35adae97..2afb18e0a5 100644 --- a/.Lib9c.Tests/Action/ActionEvaluationTest.cs +++ b/.Lib9c.Tests/Action/ActionEvaluationTest.cs @@ -32,7 +32,7 @@ public ActionEvaluationTest() #pragma warning restore CS0618 _signer = new PrivateKey().ToAddress(); _sender = new PrivateKey().ToAddress(); - _states = new MockStateDelta() + _states = new Account(MockState.Empty) .SetState(_signer, (Text)"ANYTHING") .SetState(default, Dictionary.Empty.Add("key", "value")) .MintAsset(context, _signer, _currency * 10000); @@ -99,9 +99,9 @@ public void Serialize_With_MessagePack(Type actionType) action, _signer, 1234, - _states, + _states.Trie.Hash, null, - _states, + _states.Trie.Hash, 0, new Dictionary() ); @@ -110,9 +110,8 @@ public void Serialize_With_MessagePack(Type actionType) var deserialized = MessagePackSerializer.Deserialize(b); Assert.Equal(evaluation.Signer, deserialized.Signer); Assert.Equal(evaluation.BlockIndex, deserialized.BlockIndex); - var dict = (Dictionary)deserialized.OutputState.GetState(default)!; - Assert.Equal("value", (Text)dict["key"]); - Assert.Equal(_currency * 10000, deserialized.OutputState.GetBalance(_signer, _currency)); + Assert.Equal(_states.Trie.Hash, deserialized.OutputState); + Assert.Equal(_states.Trie.Hash, deserialized.PreviousState); if (actionType == typeof(RewardGold)) { Assert.Null(deserialized.Action); diff --git a/.Lib9c.Tests/Action/ActivateAccount0Test.cs b/.Lib9c.Tests/Action/ActivateAccount0Test.cs index fbc092f5e8..5157ab2676 100644 --- a/.Lib9c.Tests/Action/ActivateAccount0Test.cs +++ b/.Lib9c.Tests/Action/ActivateAccount0Test.cs @@ -18,7 +18,7 @@ public void Execute() var privateKey = new PrivateKey(); (ActivationKey activationKey, PendingActivationState pendingActivation) = ActivationKey.Create(privateKey, nonce); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize()) .SetState(pendingActivation.address, pendingActivation.Serialize())); @@ -50,7 +50,7 @@ public void Rehearsal() ActivateAccount0 action = activationKey.CreateActivateAccount0(nonce); IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -72,7 +72,7 @@ public void ExecuteWithInvalidSignature() var privateKey = new PrivateKey(); (ActivationKey activationKey, PendingActivationState pendingActivation) = ActivationKey.Create(privateKey, nonce); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize()) .SetState(pendingActivation.address, pendingActivation.Serialize())); @@ -99,7 +99,7 @@ public void ExecuteWithNonExistsPending() ActivationKey.Create(privateKey, nonce); // state에는 pendingActivation에 해당하는 대기가 없는 상태를 가정합니다. - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize())); @@ -124,7 +124,7 @@ public void ExecuteWithNonExistsAccounts() ActivationKey.Create(privateKey, nonce); // state가 올바르게 초기화되지 않은 상태를 가정합니다. - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); ActivateAccount0 action = activationKey.CreateActivateAccount0(nonce); Assert.Throws(() => @@ -145,7 +145,7 @@ public void ForbidReusingActivationKey() var privateKey = new PrivateKey(); (ActivationKey activationKey, PendingActivationState pendingActivation) = ActivationKey.Create(privateKey, nonce); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize()) .SetState(pendingActivation.address, pendingActivation.Serialize())); diff --git a/.Lib9c.Tests/Action/ActivateAccountTest.cs b/.Lib9c.Tests/Action/ActivateAccountTest.cs index 1feb545f74..4006fe3059 100644 --- a/.Lib9c.Tests/Action/ActivateAccountTest.cs +++ b/.Lib9c.Tests/Action/ActivateAccountTest.cs @@ -25,16 +25,16 @@ public void Execute(bool invalid, bool pendingExist, bool alreadyActivated, Type ActivationKey.Create(privateKey, nonce); Address activatedAddress = default(Address).Derive(ActivationKey.DeriveKey); - var state = new MockStateDelta(); + IAccount state = new Account(MockState.Empty); if (pendingExist) { - state = (MockStateDelta)state.SetState(pendingActivation.address, pendingActivation.Serialize()); + state = state.SetState(pendingActivation.address, pendingActivation.Serialize()); } if (alreadyActivated) { - state = (MockStateDelta)state.SetState(activatedAddress, true.Serialize()); + state = state.SetState(activatedAddress, true.Serialize()); } ActivateAccount action = activationKey.CreateActivateAccount(invalid ? new byte[] { 0x00 } : nonce); @@ -74,7 +74,7 @@ public void Rehearsal() Address activatedAddress = default(Address).Derive(ActivationKey.DeriveKey); IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, diff --git a/.Lib9c.Tests/Action/AddActivatedAccount0Test.cs b/.Lib9c.Tests/Action/AddActivatedAccount0Test.cs index 44b8502e1e..051ba4fad3 100644 --- a/.Lib9c.Tests/Action/AddActivatedAccount0Test.cs +++ b/.Lib9c.Tests/Action/AddActivatedAccount0Test.cs @@ -14,7 +14,7 @@ public class AddActivatedAccount0Test public void Execute() { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize()) .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize())); @@ -43,7 +43,7 @@ public void Execute() public void Rehearsal() { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize()) .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize())); @@ -72,7 +72,7 @@ public void Rehearsal() public void ExecuteWithNonExistsAccounts() { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var newComer = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var action = new AddActivatedAccount0(newComer); @@ -92,7 +92,7 @@ public void ExecuteWithNonExistsAccounts() public void CheckPermission() { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize()) .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().Serialize())); diff --git a/.Lib9c.Tests/Action/AddActivatedAccountTest.cs b/.Lib9c.Tests/Action/AddActivatedAccountTest.cs index 8e4b74d040..a9ca6661ea 100644 --- a/.Lib9c.Tests/Action/AddActivatedAccountTest.cs +++ b/.Lib9c.Tests/Action/AddActivatedAccountTest.cs @@ -19,14 +19,14 @@ public class AddActivatedAccountTest public void Execute(bool isAdmin, long blockIndex, bool alreadyActivated, Type exc) { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + IAccount state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize())); var newComer = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var activatedAddress = newComer.Derive(ActivationKey.DeriveKey); if (alreadyActivated) { - state = (MockStateDelta)state.SetState(activatedAddress, true.Serialize()); + state = state.SetState(activatedAddress, true.Serialize()); } var action = new AddActivatedAccount(newComer); @@ -59,7 +59,7 @@ public void Execute(bool isAdmin, long blockIndex, bool alreadyActivated, Type e public void Rehearsal() { var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize())); var newComer = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); diff --git a/.Lib9c.Tests/Action/AddRedeemCodeTest.cs b/.Lib9c.Tests/Action/AddRedeemCodeTest.cs index 04da203ef8..95dd080a1c 100644 --- a/.Lib9c.Tests/Action/AddRedeemCodeTest.cs +++ b/.Lib9c.Tests/Action/AddRedeemCodeTest.cs @@ -1,9 +1,8 @@ namespace Lib9c.Tests.Action { using System.Collections.Immutable; - using Bencodex.Types; + using Libplanet.Action.State; using Libplanet.Crypto; - using Libplanet.Types.Assets; using Nekoyume; using Nekoyume.Action; using Nekoyume.Model.State; @@ -19,7 +18,7 @@ public void CheckPermission() var adminState = new AdminState(adminAddress, 100); var initStates = MockState.Empty .SetState(AdminState.Address, adminState.Serialize()); - var state = new MockStateDelta(initStates); + var state = new Account(initStates); var action = new AddRedeemCode { redeemCsv = "New Value", @@ -69,7 +68,7 @@ public void Execute() { Signer = adminAddress, BlockIndex = 0, - PreviousState = new MockStateDelta() + PreviousState = new Account(MockState.Empty) .SetState(Addresses.Admin, adminState.Serialize()) .SetState(Addresses.RedeemCode, new RedeemCodeState(new RedeemCodeListSheet()).Serialize()), }); @@ -91,7 +90,7 @@ public void ExecuteThrowSheetRowValidateException() var sheet = new RedeemCodeListSheet(); sheet.Set(csv); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.RedeemCode, new RedeemCodeState(sheet).Serialize()); var action = new AddRedeemCode @@ -118,7 +117,7 @@ public void Rehearsal() var nextState = action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Rehearsal = true, }); diff --git a/.Lib9c.Tests/Action/ApprovePledgeTest.cs b/.Lib9c.Tests/Action/ApprovePledgeTest.cs index 20059d6f50..f007c8bb24 100644 --- a/.Lib9c.Tests/Action/ApprovePledgeTest.cs +++ b/.Lib9c.Tests/Action/ApprovePledgeTest.cs @@ -19,7 +19,7 @@ public void Execute(int mead) var address = new PrivateKey().ToAddress(); var patron = new PrivateKey().ToAddress(); var contractAddress = address.Derive(nameof(RequestPledge)); - IAccount states = new MockStateDelta() + IAccount states = new Account(MockState.Empty) .SetState( contractAddress, List.Empty.Add(patron.Serialize()).Add(false.Serialize()).Add(mead.Serialize()) @@ -61,7 +61,7 @@ public void Execute_Throw_Exception(bool invalidPatron, bool alreadyContract, Ty contract = List.Empty.Add(patron.Serialize()).Add(true.Serialize()); } - IAccount states = new MockStateDelta().SetState(contractAddress, contract); + IAccount states = new Account(MockState.Empty).SetState(contractAddress, contract); var action = new ApprovePledge { diff --git a/.Lib9c.Tests/Action/ArenahelperTest.cs b/.Lib9c.Tests/Action/ArenahelperTest.cs index 665f88db55..e70881d005 100644 --- a/.Lib9c.Tests/Action/ArenahelperTest.cs +++ b/.Lib9c.Tests/Action/ArenahelperTest.cs @@ -34,7 +34,7 @@ public ArenaHelperTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(sheets); diff --git a/.Lib9c.Tests/Action/BattleArena10Test.cs b/.Lib9c.Tests/Action/BattleArena10Test.cs index c90b860b80..734030b98a 100644 --- a/.Lib9c.Tests/Action/BattleArena10Test.cs +++ b/.Lib9c.Tests/Action/BattleArena10Test.cs @@ -46,7 +46,7 @@ public BattleArena10Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena10 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1204,7 +1204,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1309,7 +1309,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena11Test.cs b/.Lib9c.Tests/Action/BattleArena11Test.cs index 943da37683..ef11262ce3 100644 --- a/.Lib9c.Tests/Action/BattleArena11Test.cs +++ b/.Lib9c.Tests/Action/BattleArena11Test.cs @@ -46,7 +46,7 @@ public BattleArena11Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena11 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1204,7 +1204,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1309,7 +1309,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena12Test.cs b/.Lib9c.Tests/Action/BattleArena12Test.cs index db5bb9a2c2..e478c53e27 100644 --- a/.Lib9c.Tests/Action/BattleArena12Test.cs +++ b/.Lib9c.Tests/Action/BattleArena12Test.cs @@ -46,7 +46,7 @@ public BattleArena12Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena12 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1243,7 +1243,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1348,7 +1348,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena13Test.cs b/.Lib9c.Tests/Action/BattleArena13Test.cs index 439cf3071c..a74780bb27 100644 --- a/.Lib9c.Tests/Action/BattleArena13Test.cs +++ b/.Lib9c.Tests/Action/BattleArena13Test.cs @@ -46,7 +46,7 @@ public BattleArena13Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena13 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1204,7 +1204,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1309,7 +1309,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena1Test.cs b/.Lib9c.Tests/Action/BattleArena1Test.cs index 7be1240fe0..f7065a2d85 100644 --- a/.Lib9c.Tests/Action/BattleArena1Test.cs +++ b/.Lib9c.Tests/Action/BattleArena1Test.cs @@ -47,7 +47,7 @@ public BattleArena1Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(_sheets); @@ -208,7 +208,7 @@ public IAccount JoinArena(IActionContext context, Address signer, Address avatar { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -292,7 +292,7 @@ public void Execute(long nextBlockIndex, int championshipId, int round, int tick { PreviousState = _state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -386,7 +386,7 @@ public void Execute_InvalidAddressException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -408,7 +408,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -430,7 +430,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -453,7 +453,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -475,7 +475,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -498,7 +498,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -544,7 +544,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -596,7 +596,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/BattleArena2Test.cs b/.Lib9c.Tests/Action/BattleArena2Test.cs index 7c23815fd8..93a9ea9293 100644 --- a/.Lib9c.Tests/Action/BattleArena2Test.cs +++ b/.Lib9c.Tests/Action/BattleArena2Test.cs @@ -49,7 +49,7 @@ public BattleArena2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(_sheets); @@ -212,7 +212,7 @@ public IAccount JoinArena(IActionContext context, Address signer, Address avatar { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -307,7 +307,7 @@ public void Execute( { PreviousState = _state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -415,7 +415,7 @@ public void Execute_InvalidAddressException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -437,7 +437,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -459,7 +459,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -482,7 +482,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -504,7 +504,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -527,7 +527,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -573,7 +573,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -625,7 +625,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -678,7 +678,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -728,7 +728,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -789,7 +789,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/BattleArena3Test.cs b/.Lib9c.Tests/Action/BattleArena3Test.cs index f633910504..18dd8ef071 100644 --- a/.Lib9c.Tests/Action/BattleArena3Test.cs +++ b/.Lib9c.Tests/Action/BattleArena3Test.cs @@ -49,7 +49,7 @@ public BattleArena3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(_sheets); @@ -212,7 +212,7 @@ public IAccount JoinArena(IActionContext context, Address signer, Address avatar { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -307,7 +307,7 @@ public void Execute( { PreviousState = _state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -415,7 +415,7 @@ public void Execute_InvalidAddressException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -437,7 +437,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -459,7 +459,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -482,7 +482,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -504,7 +504,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -527,7 +527,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -573,7 +573,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -625,7 +625,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -678,7 +678,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -728,7 +728,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -789,7 +789,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/BattleArena4Test.cs b/.Lib9c.Tests/Action/BattleArena4Test.cs index e42baf9ee2..b78894e10d 100644 --- a/.Lib9c.Tests/Action/BattleArena4Test.cs +++ b/.Lib9c.Tests/Action/BattleArena4Test.cs @@ -49,7 +49,7 @@ public BattleArena4Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(_sheets); @@ -212,7 +212,7 @@ public IAccount JoinArena(IActionContext context, Address signer, Address avatar { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -307,7 +307,7 @@ public void Execute( { PreviousState = _state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -415,7 +415,7 @@ public void Execute_InvalidAddressException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -437,7 +437,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -459,7 +459,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -482,7 +482,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -504,7 +504,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -527,7 +527,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -571,7 +571,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -621,7 +621,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -672,7 +672,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -720,7 +720,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -779,7 +779,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -838,7 +838,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = _state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext() @@ -846,7 +846,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = newState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -926,7 +926,7 @@ public void Execute_v100291() { PreviousState = _state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena5Test.cs b/.Lib9c.Tests/Action/BattleArena5Test.cs index 73198dcd2c..8b2f9aab84 100644 --- a/.Lib9c.Tests/Action/BattleArena5Test.cs +++ b/.Lib9c.Tests/Action/BattleArena5Test.cs @@ -44,7 +44,7 @@ public BattleArena5Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -209,7 +209,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -231,7 +231,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -254,7 +254,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -277,7 +277,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -299,7 +299,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -322,7 +322,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -383,7 +383,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -453,7 +453,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -521,7 +521,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -586,7 +586,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -665,7 +665,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -744,7 +744,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -752,7 +752,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -895,7 +895,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1000,7 +1000,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena6Test.cs b/.Lib9c.Tests/Action/BattleArena6Test.cs index 0d2b429e18..7067a0b31f 100644 --- a/.Lib9c.Tests/Action/BattleArena6Test.cs +++ b/.Lib9c.Tests/Action/BattleArena6Test.cs @@ -45,7 +45,7 @@ public BattleArena6Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); _sheets.Remove(nameof(RuneOptionSheet)); @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -233,7 +233,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -256,7 +256,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -279,7 +279,7 @@ public void Execute_ActionObsoletedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -301,7 +301,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -324,7 +324,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -385,7 +385,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -455,7 +455,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -523,7 +523,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -588,7 +588,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -667,7 +667,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -751,7 +751,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -830,7 +830,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -838,7 +838,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -981,7 +981,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1086,7 +1086,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena7Test.cs b/.Lib9c.Tests/Action/BattleArena7Test.cs index d44acad98d..523a5626f7 100644 --- a/.Lib9c.Tests/Action/BattleArena7Test.cs +++ b/.Lib9c.Tests/Action/BattleArena7Test.cs @@ -45,7 +45,7 @@ public BattleArena7Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -994,7 +994,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1099,7 +1099,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena8Test.cs b/.Lib9c.Tests/Action/BattleArena8Test.cs index 32f79760b7..41779f3cf7 100644 --- a/.Lib9c.Tests/Action/BattleArena8Test.cs +++ b/.Lib9c.Tests/Action/BattleArena8Test.cs @@ -46,7 +46,7 @@ public BattleArena8Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena8 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1204,7 +1204,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1309,7 +1309,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleArena9Test.cs b/.Lib9c.Tests/Action/BattleArena9Test.cs index d46c6b3445..e79f7a291e 100644 --- a/.Lib9c.Tests/Action/BattleArena9Test.cs +++ b/.Lib9c.Tests/Action/BattleArena9Test.cs @@ -46,7 +46,7 @@ public BattleArena9Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -211,7 +211,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -234,7 +234,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -258,7 +258,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _initialStates, Signer = _agent4Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -282,7 +282,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -305,7 +305,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 4480001, })); } @@ -329,7 +329,7 @@ public void Execute_ArenaParticipantsNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -391,7 +391,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -462,7 +462,7 @@ public void Execute_ValidateScoreDifferenceException(bool isSigner) BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -531,7 +531,7 @@ public void Execute_InsufficientBalanceException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -597,7 +597,7 @@ public void Execute_ExceedPlayCountException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -677,7 +677,7 @@ public void Execute_ExceedTicketPurchaseLimitException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -762,7 +762,7 @@ public void Execute_ExceedTicketPurchaseLimitDuringIntervalException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -842,7 +842,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(() => action.Execute(new ActionContext @@ -850,7 +850,7 @@ public void Execute_CoolDownBlockException() BlockIndex = blockIndex + 1, PreviousState = nextStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -919,7 +919,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new BattleArena9 @@ -972,7 +972,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = previousStates, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, })); @@ -1059,7 +1059,7 @@ public void Execute_ValidateDuplicateTicketPurchaseException() BlockIndex = blockIndex, PreviousState = previousStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -1204,7 +1204,7 @@ private void Execute( { PreviousState = previousStates, Signer = myAgentAddress, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -1309,7 +1309,7 @@ private IAccount JoinArena( { PreviousState = states, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/BattleGrandFinale1Test.cs b/.Lib9c.Tests/Action/BattleGrandFinale1Test.cs index 64525c07d9..78cea9a9ac 100644 --- a/.Lib9c.Tests/Action/BattleGrandFinale1Test.cs +++ b/.Lib9c.Tests/Action/BattleGrandFinale1Test.cs @@ -45,7 +45,7 @@ public BattleGrandFinale1Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -209,14 +209,14 @@ public void Execute_AlreadyFoughtAvatarException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, }); Assert.Throws(() => action.Execute(new ActionContext { PreviousState = next, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -237,7 +237,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -257,7 +257,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -277,7 +277,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -300,7 +300,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -348,7 +348,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = myAvatar.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = row.StartBlockIndex, })); } @@ -426,7 +426,7 @@ private void Execute(long blockIndex, int grandFinaleId, int randomSeed, Address Signer = myAgentAddr, BlockIndex = blockIndex, PreviousState = states, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, }); Assert.True(nextStates.TryGetState( myAvatarAddr.Derive( diff --git a/.Lib9c.Tests/Action/BattleGrandFinale2Test.cs b/.Lib9c.Tests/Action/BattleGrandFinale2Test.cs index 2573b5fc14..1469c463bd 100644 --- a/.Lib9c.Tests/Action/BattleGrandFinale2Test.cs +++ b/.Lib9c.Tests/Action/BattleGrandFinale2Test.cs @@ -45,7 +45,7 @@ public BattleGrandFinale2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -209,14 +209,14 @@ public void Execute_AlreadyFoughtAvatarException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, }); Assert.Throws(() => action.Execute(new ActionContext { PreviousState = next, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -237,7 +237,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -257,7 +257,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -277,7 +277,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -300,7 +300,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -348,7 +348,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = myAvatar.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = row.StartBlockIndex, })); } @@ -426,7 +426,7 @@ private void Execute(long blockIndex, int grandFinaleId, int randomSeed, Address Signer = myAgentAddr, BlockIndex = blockIndex, PreviousState = states, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, }); Assert.True(nextStates.TryGetState( myAvatarAddr.Derive( diff --git a/.Lib9c.Tests/Action/BattleGrandFinale3Test.cs b/.Lib9c.Tests/Action/BattleGrandFinale3Test.cs index 04407b1cca..86a0006202 100644 --- a/.Lib9c.Tests/Action/BattleGrandFinale3Test.cs +++ b/.Lib9c.Tests/Action/BattleGrandFinale3Test.cs @@ -45,7 +45,7 @@ public BattleGrandFinale3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in _sheets) @@ -209,14 +209,14 @@ public void Execute_AlreadyFoughtAvatarException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, }); Assert.Throws(() => action.Execute(new ActionContext { PreviousState = next, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -237,7 +237,7 @@ public void Execute_InvalidAddressException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -257,7 +257,7 @@ public void Execute_FailedLoadStateException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -277,7 +277,7 @@ public void Execute_SheetRowNotFoundException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -300,7 +300,7 @@ public void Execute_ThisArenaIsClosedException() { PreviousState = _initialStates, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -348,7 +348,7 @@ public void Execute_AddressNotFoundInArenaParticipantsException(bool excludeMe) { PreviousState = previousStates, Signer = myAvatar.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = row.StartBlockIndex, })); } @@ -426,7 +426,7 @@ private void Execute(long blockIndex, int grandFinaleId, int randomSeed, Address Signer = myAgentAddr, BlockIndex = blockIndex, PreviousState = states, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, }); Assert.True(nextStates.TryGetState( myAvatarAddr.Derive( diff --git a/.Lib9c.Tests/Action/Buy10Test.cs b/.Lib9c.Tests/Action/Buy10Test.cs index 8e97954107..b8a156412b 100644 --- a/.Lib9c.Tests/Action/Buy10Test.cs +++ b/.Lib9c.Tests/Action/Buy10Test.cs @@ -44,7 +44,7 @@ public Buy10Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -331,7 +331,7 @@ public void Execute(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -457,7 +457,7 @@ public void Execute_Throw_Exception(bool equalAvatarAddress, bool clearStage, Ty { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -575,7 +575,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -700,7 +700,7 @@ public void Execute_ReconfigureFungibleItem(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -804,7 +804,7 @@ public void Rehearsal() OrderReceipt.DeriveAddress(_orderId), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -857,7 +857,7 @@ public void Execute_With_Testbed() { BlockIndex = 100, PreviousState = nextState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = result.GetAgentState().address, }); diff --git a/.Lib9c.Tests/Action/Buy11Test.cs b/.Lib9c.Tests/Action/Buy11Test.cs index 6f062182ee..9ff4dfe34c 100644 --- a/.Lib9c.Tests/Action/Buy11Test.cs +++ b/.Lib9c.Tests/Action/Buy11Test.cs @@ -46,7 +46,7 @@ public Buy11Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -337,7 +337,7 @@ public void Execute(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -463,7 +463,7 @@ public void Execute_Throw_Exception(bool equalAvatarAddress, bool clearStage, Ty { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -581,7 +581,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -706,7 +706,7 @@ public void Execute_ReconfigureFungibleItem(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -810,7 +810,7 @@ public void Rehearsal() OrderReceipt.DeriveAddress(_orderId), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -866,7 +866,7 @@ public void Execute_With_Testbed() { BlockIndex = 100, PreviousState = nextState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = result.GetAgentState().address, }); @@ -985,7 +985,7 @@ public void Execute_ActionObsoletedException() { BlockIndex = 100, PreviousState = nextState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = result.GetAgentState().address, }); diff --git a/.Lib9c.Tests/Action/Buy2Test.cs b/.Lib9c.Tests/Action/Buy2Test.cs index 08a921f555..4efc953256 100644 --- a/.Lib9c.Tests/Action/Buy2Test.cs +++ b/.Lib9c.Tests/Action/Buy2Test.cs @@ -35,7 +35,7 @@ public Buy2Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -150,7 +150,7 @@ public void Execute() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/Buy3Test.cs b/.Lib9c.Tests/Action/Buy3Test.cs index 580ba26ce0..499bb94572 100644 --- a/.Lib9c.Tests/Action/Buy3Test.cs +++ b/.Lib9c.Tests/Action/Buy3Test.cs @@ -35,7 +35,7 @@ public Buy3Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -164,7 +164,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -207,8 +207,8 @@ public void ExecuteThrowInvalidAddressException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -228,8 +228,8 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -260,7 +260,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -281,7 +281,7 @@ public void ExecuteThrowItemDoesNotExistException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -312,7 +312,7 @@ public void ExecuteThrowInsufficientBalanceException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); diff --git a/.Lib9c.Tests/Action/Buy4Test.cs b/.Lib9c.Tests/Action/Buy4Test.cs index ece6ae9475..6ad35d7fb6 100644 --- a/.Lib9c.Tests/Action/Buy4Test.cs +++ b/.Lib9c.Tests/Action/Buy4Test.cs @@ -37,7 +37,7 @@ public Buy4Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -183,7 +183,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -231,8 +231,8 @@ public void ExecuteThrowInvalidAddressException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -252,8 +252,8 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -284,7 +284,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -305,7 +305,7 @@ public void ExecuteThrowItemDoesNotExistException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -336,7 +336,7 @@ public void ExecuteThrowInsufficientBalanceException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); diff --git a/.Lib9c.Tests/Action/Buy5Test.cs b/.Lib9c.Tests/Action/Buy5Test.cs index e938016906..18e7413aa4 100644 --- a/.Lib9c.Tests/Action/Buy5Test.cs +++ b/.Lib9c.Tests/Action/Buy5Test.cs @@ -38,7 +38,7 @@ public Buy5Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -259,7 +259,7 @@ public void Execute(params ShopItemData[] shopItemMembers) { BlockIndex = 1, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -336,7 +336,7 @@ public void Execute_ErrorCode_InvalidAddress() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -365,8 +365,8 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -402,7 +402,7 @@ public void Execute_Throw_NotEnoughClearedStageLevel() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -428,7 +428,7 @@ public void Execute_ErrorCode_ItemDoesNotExist() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -481,7 +481,7 @@ public void Execute_ErrorCode_InsufficientBalance() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -533,7 +533,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_By_SellerAvatar() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -583,7 +583,7 @@ public void Execute_ErrorCode_ShopItemExpired() { BlockIndex = 11, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/Buy6Test.cs b/.Lib9c.Tests/Action/Buy6Test.cs index 4c42b2cb0d..6d61fa7104 100644 --- a/.Lib9c.Tests/Action/Buy6Test.cs +++ b/.Lib9c.Tests/Action/Buy6Test.cs @@ -39,7 +39,7 @@ public Buy6Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -319,7 +319,7 @@ out _ { BlockIndex = 1, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -414,7 +414,7 @@ public void Execute_ErrorCode_InvalidAddress() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -443,8 +443,8 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -480,7 +480,7 @@ public void Execute_Throw_NotEnoughClearedStageLevel() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -506,7 +506,7 @@ public void Execute_ErrorCode_ItemDoesNotExist() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -555,7 +555,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_Material(ItemSubType itemSubType) { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -607,7 +607,7 @@ public void Execute_ErrorCode_InsufficientBalance() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -689,7 +689,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_By_SellerAvatar(ItemType itemType { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -739,7 +739,7 @@ public void Execute_ErrorCode_ShopItemExpired() { BlockIndex = 11, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/Buy7Test.cs b/.Lib9c.Tests/Action/Buy7Test.cs index b7134607ba..7f77c8a1de 100644 --- a/.Lib9c.Tests/Action/Buy7Test.cs +++ b/.Lib9c.Tests/Action/Buy7Test.cs @@ -39,7 +39,7 @@ public Buy7Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -320,7 +320,7 @@ out _ { BlockIndex = 1, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -415,7 +415,7 @@ public void Execute_ErrorCode_InvalidAddress() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -444,8 +444,8 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -481,7 +481,7 @@ public void Execute_Throw_NotEnoughClearedStageLevel() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -507,7 +507,7 @@ public void Execute_ErrorCode_ItemDoesNotExist() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -556,7 +556,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_Material(ItemSubType itemSubType) { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -626,7 +626,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_20210604(ItemSubType itemSubType, { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -679,7 +679,7 @@ public void Execute_ErrorCode_InsufficientBalance() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -762,7 +762,7 @@ public void Execute_ErrorCode_ItemDoesNotExist_By_SellerAvatar(ItemType itemType { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -819,7 +819,7 @@ public void Execute_ErrorCode_ShopItemExpired() { BlockIndex = 11, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -872,7 +872,7 @@ public void Execute_ErrorCode_InvalidPrice(int shopPrice, int price) { BlockIndex = 10, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/Buy8Test.cs b/.Lib9c.Tests/Action/Buy8Test.cs index 06b1b14145..fe13fbaad9 100644 --- a/.Lib9c.Tests/Action/Buy8Test.cs +++ b/.Lib9c.Tests/Action/Buy8Test.cs @@ -41,7 +41,7 @@ public Buy8Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -305,7 +305,7 @@ out _ { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -431,7 +431,7 @@ public void Execute_Throw_Exception(bool equalAvatarAddress, bool clearStage, Ty { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -532,7 +532,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -586,7 +586,7 @@ public void Rehearsal() OrderReceipt.DeriveAddress(_orderId), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Buy9Test.cs b/.Lib9c.Tests/Action/Buy9Test.cs index a93592b9ac..9a11cefffc 100644 --- a/.Lib9c.Tests/Action/Buy9Test.cs +++ b/.Lib9c.Tests/Action/Buy9Test.cs @@ -41,7 +41,7 @@ public Buy9Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -403,7 +403,7 @@ out _ { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -529,7 +529,7 @@ public void Execute_Throw_Exception(bool equalAvatarAddress, bool clearStage, Ty { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -631,7 +631,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -685,7 +685,7 @@ public void Rehearsal() OrderReceipt.DeriveAddress(_orderId), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/BuyMultipleTest.cs b/.Lib9c.Tests/Action/BuyMultipleTest.cs index 15f04477f0..50a56ce6d3 100644 --- a/.Lib9c.Tests/Action/BuyMultipleTest.cs +++ b/.Lib9c.Tests/Action/BuyMultipleTest.cs @@ -34,7 +34,7 @@ public BuyMultipleTest(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -334,7 +334,7 @@ public void Execute(params ShopItemData[] productDatas) { BlockIndex = 1, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -407,8 +407,8 @@ public void ExecuteThrowInvalidAddressException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -426,8 +426,8 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -456,7 +456,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -474,7 +474,7 @@ public void ExecuteThrowItemDoesNotExistErrorByEmptyCollection() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -544,7 +544,7 @@ public void ExecuteInsufficientBalanceError() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -598,7 +598,7 @@ public void ExecuteThrowShopItemExpiredError() { BlockIndex = 11, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/BuyProduct0Test.cs b/.Lib9c.Tests/Action/BuyProduct0Test.cs index a579bdb224..34332a3a86 100644 --- a/.Lib9c.Tests/Action/BuyProduct0Test.cs +++ b/.Lib9c.Tests/Action/BuyProduct0Test.cs @@ -45,7 +45,7 @@ public BuyProduct0Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -304,7 +304,7 @@ public void Execute_Throw_Exception(params ExecuteMember[] validateMembers) Assert.Throws(validateMember.Exc, () => action.Execute(new ActionContext { PreviousState = previousState, - Random = new TestRandom(), + RandomSeed = 0, Signer = BuyerAgentAddress, })); } diff --git a/.Lib9c.Tests/Action/BuyProduct2Test.cs b/.Lib9c.Tests/Action/BuyProduct2Test.cs index 07f65702ec..55475d8d99 100644 --- a/.Lib9c.Tests/Action/BuyProduct2Test.cs +++ b/.Lib9c.Tests/Action/BuyProduct2Test.cs @@ -45,7 +45,7 @@ public BuyProduct2Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -304,7 +304,7 @@ public void Execute_Throw_Exception(params ExecuteMember[] validateMembers) Assert.Throws(validateMember.Exc, () => action.Execute(new ActionContext { PreviousState = previousState, - Random = new TestRandom(), + RandomSeed = 0, Signer = BuyerAgentAddress, })); } diff --git a/.Lib9c.Tests/Action/BuyTest.cs b/.Lib9c.Tests/Action/BuyTest.cs index e37e9a3a3f..dd26c09de8 100644 --- a/.Lib9c.Tests/Action/BuyTest.cs +++ b/.Lib9c.Tests/Action/BuyTest.cs @@ -44,7 +44,7 @@ public BuyTest(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -346,7 +346,7 @@ public void Execute(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -360,7 +360,7 @@ public void Execute(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -491,7 +491,7 @@ public void Execute_Throw_Exception(bool equalAvatarAddress, bool clearStage, Ty { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }) ); @@ -621,7 +621,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, }); @@ -655,7 +655,7 @@ public void Execute_ErrorCode(ErrorCodeMember errorCodeMember) { BlockIndex = blockIndex, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _buyerAgentAddress, })); @@ -775,7 +775,7 @@ public void Execute_ReconfigureFungibleItem(params OrderData[] orderDataList) { BlockIndex = 100, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _buyerAgentAddress, }); @@ -883,7 +883,7 @@ public void Execute_With_Testbed() { BlockIndex = 100, PreviousState = nextState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = result.GetAgentState().address, }); diff --git a/.Lib9c.Tests/Action/CancelMonsterCollectTest.cs b/.Lib9c.Tests/Action/CancelMonsterCollectTest.cs index 87a7209b18..57a557c04c 100644 --- a/.Lib9c.Tests/Action/CancelMonsterCollectTest.cs +++ b/.Lib9c.Tests/Action/CancelMonsterCollectTest.cs @@ -21,7 +21,7 @@ public class CancelMonsterCollectTest public CancelMonsterCollectTest() { _signer = default; - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); Dictionary sheets = TableSheetsImporter.ImportSheets(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_signer); diff --git a/.Lib9c.Tests/Action/CancelProductRegistration0Test.cs b/.Lib9c.Tests/Action/CancelProductRegistration0Test.cs index 098bb71e06..082c1513bc 100644 --- a/.Lib9c.Tests/Action/CancelProductRegistration0Test.cs +++ b/.Lib9c.Tests/Action/CancelProductRegistration0Test.cs @@ -33,7 +33,7 @@ public CancelProductRegistration0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -119,7 +119,7 @@ bool invalidAgentAddress Signer = _agentAddress, BlockIndex = 1L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, }; Assert.Throws(() => action.Execute(actionContext)); } @@ -148,7 +148,7 @@ public void Execute_Throw_ProductNotFoundException() PreviousState = prevState, BlockIndex = 1L, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Equal( 0 * RuneHelper.StakeRune, @@ -188,7 +188,7 @@ public void Execute_Throw_ProductNotFoundException() PreviousState = nexState, BlockIndex = 2L, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/ChargeActionPoint0Test.cs b/.Lib9c.Tests/Action/ChargeActionPoint0Test.cs index 7130c6a1d2..48cd7890fc 100644 --- a/.Lib9c.Tests/Action/ChargeActionPoint0Test.cs +++ b/.Lib9c.Tests/Action/ChargeActionPoint0Test.cs @@ -53,7 +53,7 @@ public void Execute() Assert.Equal(0, avatarState.actionPoint); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.GameConfig, gameConfigState.Serialize()) .SetState(agentAddress, agent.Serialize()) .SetState(avatarAddress, avatarState.Serialize()); @@ -72,7 +72,7 @@ public void Execute() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/ChargeActionPoint2Test.cs b/.Lib9c.Tests/Action/ChargeActionPoint2Test.cs index cee93cf049..2b38a15601 100644 --- a/.Lib9c.Tests/Action/ChargeActionPoint2Test.cs +++ b/.Lib9c.Tests/Action/ChargeActionPoint2Test.cs @@ -43,7 +43,7 @@ public ChargeActionPoint2Test() }; agent.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GameConfig, gameConfigState.Serialize()) .SetState(_agentAddress, agent.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()); @@ -90,7 +90,7 @@ public void Execute(bool useTradable) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -110,8 +110,8 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Signer = default, }) ); @@ -145,7 +145,7 @@ public void Execute_Throw_NotEnoughMaterialException(bool useTradable) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); diff --git a/.Lib9c.Tests/Action/ChargeActionPointTest.cs b/.Lib9c.Tests/Action/ChargeActionPointTest.cs index 0733ee893b..37a8326ab0 100644 --- a/.Lib9c.Tests/Action/ChargeActionPointTest.cs +++ b/.Lib9c.Tests/Action/ChargeActionPointTest.cs @@ -46,7 +46,7 @@ public ChargeActionPointTest() }; agent.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GameConfig, gameConfigState.Serialize()) .SetState(_agentAddress, agent.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()); @@ -107,7 +107,7 @@ public void Execute(bool useTradable, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -163,7 +163,7 @@ public void Execute_Throw_Exception(bool useAvatarAddress, bool useTradable, boo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -185,7 +185,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/ClaimItemsTest.cs b/.Lib9c.Tests/Action/ClaimItemsTest.cs new file mode 100644 index 0000000000..63843b55ce --- /dev/null +++ b/.Lib9c.Tests/Action/ClaimItemsTest.cs @@ -0,0 +1,216 @@ +namespace Lib9c.Tests.Action +{ + using System; + using System.Collections.Generic; + using System.Linq; + using Libplanet.Action.State; + using Libplanet.Crypto; + using Libplanet.Types.Assets; + using Nekoyume; + using Nekoyume.Action; + using Nekoyume.Model; + using Nekoyume.Model.State; + using Serilog; + using Xunit; + using Xunit.Abstractions; + + public class ClaimItemsTest + { + private readonly IAccount _initialState; + private readonly Address _signerAddress; + + private readonly TableSheets _tableSheets; + private readonly List _currencies; + private readonly List _itemIds; + + public ClaimItemsTest(ITestOutputHelper outputHelper) + { + Log.Logger = new LoggerConfiguration() + .MinimumLevel.Verbose() + .WriteTo.TestOutput(outputHelper) + .CreateLogger(); + + _initialState = new Account(MockState.Empty); + + var sheets = TableSheetsImporter.ImportSheets(); + foreach (var (key, value) in sheets) + { + _initialState = _initialState + .SetState(Addresses.TableSheet.Derive(key), value.Serialize()); + } + + _tableSheets = new TableSheets(sheets); + _itemIds = _tableSheets.CostumeItemSheet.Values.Take(3).Select(x => x.Id).ToList(); + _currencies = _itemIds.Select(id => Currency.Legacy($"Item_T_{id}", 0, minters: null)).ToList(); + + _signerAddress = new PrivateKey().ToAddress(); + + var context = new ActionContext(); + _initialState = _initialState + .MintAsset(context, _signerAddress, _currencies[0] * 5) + .MintAsset(context, _signerAddress, _currencies[1] * 5) + .MintAsset(context, _signerAddress, _currencies[2] * 5); + } + + [Fact] + public void Serialize() + { + var states = GenerateAvatar(_initialState, out var avatarAddress1); + GenerateAvatar(states, out var avatarAddress2); + + var action = new ClaimItems(new List<(Address, IReadOnlyList)> + { + (avatarAddress1, new List { _currencies[0] * 1, _currencies[1] * 1 }), + (avatarAddress2, new List { _currencies[0] * 1 }), + }); + var deserialized = new ClaimItems(); + deserialized.LoadPlainValue(action.PlainValue); + + foreach (var i in Enumerable.Range(0, 2)) + { + Assert.Equal(action.ClaimData[i].address, deserialized.ClaimData[i].address); + Assert.True(action.ClaimData[i].fungibleAssetValues + .SequenceEqual(deserialized.ClaimData[i].fungibleAssetValues)); + } + } + + [Fact] + public void Execute_Throws_ArgumentException_TickerInvalid() + { + var state = GenerateAvatar(_initialState, out var recipientAvatarAddress); + + var currency = Currencies.Crystal; + var action = new ClaimItems(new List<(Address, IReadOnlyList)> + { + (recipientAvatarAddress, new List { currency * 1 }), + }); + Assert.Throws(() => + action.Execute(new ActionContext + { + PreviousState = state, + Signer = _signerAddress, + BlockIndex = 100, + RandomSeed = 0, + })); + } + + [Fact] + public void Execute_Throws_WhenNotEnoughBalance() + { + var state = GenerateAvatar(_initialState, out var recipientAvatarAddress); + + var currency = _currencies.First(); + var action = new ClaimItems(new List<(Address, IReadOnlyList)> + { + (recipientAvatarAddress, new List { currency * 6 }), + }); + Assert.Throws(() => + action.Execute(new ActionContext + { + PreviousState = state, + Signer = _signerAddress, + BlockIndex = 100, + RandomSeed = 0, + })); + } + + [Fact] + public void Execute() + { + var state = GenerateAvatar(_initialState, out var recipientAvatarAddress); + + var fungibleAssetValues = _currencies.Select(currency => currency * 1).ToList(); + var action = new ClaimItems(new List<(Address, IReadOnlyList)> + { + (recipientAvatarAddress, fungibleAssetValues), + }); + var states = action.Execute(new ActionContext + { + PreviousState = state, + Signer = _signerAddress, + BlockIndex = 0, + RandomSeed = 0, + }); + + var inventory = states.GetInventory(recipientAvatarAddress.Derive(SerializeKeys.LegacyInventoryKey)); + foreach (var i in Enumerable.Range(0, 3)) + { + Assert.Equal(_currencies[i] * 4, states.GetBalance(_signerAddress, _currencies[i])); + Assert.Equal( + 1, + inventory.Items.First(x => x.item.Id == _itemIds[i]).count); + } + } + + [Fact] + public void Execute_WithMultipleRecipients() + { + var state = GenerateAvatar(_initialState, out var recipientAvatarAddress1); + state = GenerateAvatar(state, out var recipientAvatarAddress2); + + var recipientAvatarAddresses = new List
+ { + recipientAvatarAddress1, recipientAvatarAddress2, + }; + var fungibleAssetValues = _currencies.Select(currency => currency * 1).ToList(); + + var action = new ClaimItems(new List<(Address, IReadOnlyList)> + { + (recipientAvatarAddress1, fungibleAssetValues.Take(2).ToList()), + (recipientAvatarAddress2, fungibleAssetValues), + }); + + var states = action.Execute(new ActionContext + { + PreviousState = state, + Signer = _signerAddress, + BlockIndex = 0, + RandomSeed = 0, + }); + + Assert.Equal(states.GetBalance(_signerAddress, _currencies[0]), _currencies[0] * 3); + Assert.Equal(states.GetBalance(_signerAddress, _currencies[1]), _currencies[1] * 3); + Assert.Equal(states.GetBalance(_signerAddress, _currencies[2]), _currencies[2] * 4); + + var inventory1 = states.GetInventory(recipientAvatarAddress1.Derive(SerializeKeys.LegacyInventoryKey)); + Assert.Equal(1, inventory1.Items.First(x => x.item.Id == _itemIds[0]).count); + Assert.Equal(1, inventory1.Items.First(x => x.item.Id == _itemIds[1]).count); + + var inventory2 = states.GetInventory(recipientAvatarAddress2.Derive(SerializeKeys.LegacyInventoryKey)); + Assert.Equal(1, inventory2.Items.First(x => x.item.Id == _itemIds[0]).count); + Assert.Equal(1, inventory2.Items.First(x => x.item.Id == _itemIds[1]).count); + Assert.Equal(1, inventory2.Items.First(x => x.item.Id == _itemIds[2]).count); + } + + private IAccount GenerateAvatar(IAccount state, out Address avatarAddress) + { + var address = new PrivateKey().ToAddress(); + var agentState = new AgentState(address); + avatarAddress = address.Derive("avatar"); + var rankingMapAddress = new PrivateKey().ToAddress(); + var avatarState = new AvatarState( + avatarAddress, + address, + 0, + _tableSheets.GetAvatarSheets(), + new GameConfigState(), + rankingMapAddress) + { + worldInformation = new WorldInformation( + 0, + _tableSheets.WorldSheet, + GameConfig.RequireClearedStageLevel.ActionsInShop), + }; + agentState.avatarAddresses[0] = avatarAddress; + + state = state + .SetState(address, agentState.Serialize()) + .SetState(avatarAddress, avatarState.Serialize()) + .SetState( + avatarAddress.Derive(SerializeKeys.LegacyInventoryKey), + avatarState.inventory.Serialize()); + + return state; + } + } +} diff --git a/.Lib9c.Tests/Action/ClaimMonsterCollectionReward0Test.cs b/.Lib9c.Tests/Action/ClaimMonsterCollectionReward0Test.cs index b03c326507..24d5fe07ef 100644 --- a/.Lib9c.Tests/Action/ClaimMonsterCollectionReward0Test.cs +++ b/.Lib9c.Tests/Action/ClaimMonsterCollectionReward0Test.cs @@ -24,7 +24,7 @@ public ClaimMonsterCollectionReward0Test() { _signer = default; _avatarAddress = _signer.Derive("avatar"); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); Dictionary sheets = TableSheetsImporter.ImportSheets(); _tableSheets = new TableSheets(sheets); var rankingMapAddress = new PrivateKey().ToAddress(); @@ -147,7 +147,7 @@ public void Execute(int rewardLevel, int prevRewardLevel, int collectionLevel) PreviousState = _state, Signer = _signer, BlockIndex = rewardLevel * MonsterCollectionState0.RewardInterval, - Random = new TestRandom(), + RandomSeed = 0, }); MonsterCollectionState0 nextMonsterCollectionState = new MonsterCollectionState0((Dictionary)nextState.GetState(collectionAddress)); @@ -291,7 +291,7 @@ public void Execute_Throw_InsufficientBalanceException() PreviousState = _state, Signer = _signer, BlockIndex = MonsterCollectionState0.ExpirationIndex, - Random = new TestRandom(), + RandomSeed = 0, }) ); } diff --git a/.Lib9c.Tests/Action/ClaimMonsterCollectionReward2Test.cs b/.Lib9c.Tests/Action/ClaimMonsterCollectionReward2Test.cs index a81f5e7b37..537170a477 100644 --- a/.Lib9c.Tests/Action/ClaimMonsterCollectionReward2Test.cs +++ b/.Lib9c.Tests/Action/ClaimMonsterCollectionReward2Test.cs @@ -35,7 +35,7 @@ public ClaimMonsterCollectionReward2Test(ITestOutputHelper outputHelper) _signer = default; _avatarAddress = _signer.Derive("avatar"); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); Dictionary sheets = TableSheetsImporter.ImportSheets(); _tableSheets = new TableSheets(sheets); var rankingMapAddress = new PrivateKey().ToAddress(); @@ -106,7 +106,7 @@ public void Execute(int collectionLevel, long claimBlockIndex, long? receivedBlo PreviousState = _state, Signer = _signer, BlockIndex = claimBlockIndex, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -117,7 +117,7 @@ public void Execute(int collectionLevel, long claimBlockIndex, long? receivedBlo PreviousState = _state, Signer = _signer, BlockIndex = claimBlockIndex, - Random = new TestRandom(), + RandomSeed = 0, }); var nextMonsterCollectionState = new MonsterCollectionState( @@ -210,7 +210,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, BlockIndex = 0, Rehearsal = true, diff --git a/.Lib9c.Tests/Action/ClaimMonsterCollectionRewardTest.cs b/.Lib9c.Tests/Action/ClaimMonsterCollectionRewardTest.cs index 4d501eb495..010c600443 100644 --- a/.Lib9c.Tests/Action/ClaimMonsterCollectionRewardTest.cs +++ b/.Lib9c.Tests/Action/ClaimMonsterCollectionRewardTest.cs @@ -35,7 +35,7 @@ public ClaimMonsterCollectionRewardTest(ITestOutputHelper outputHelper) _signer = default; _avatarAddress = _signer.Derive("avatar"); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); Dictionary sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(sheets); var rankingMapAddress = new PrivateKey().ToAddress(); @@ -104,7 +104,7 @@ public void Execute(int collectionLevel, long claimBlockIndex, long? receivedBlo PreviousState = _state, Signer = _signer, BlockIndex = claimBlockIndex, - Random = new TestRandom(), + RandomSeed = 0, })); } else @@ -114,7 +114,7 @@ public void Execute(int collectionLevel, long claimBlockIndex, long? receivedBlo PreviousState = _state, Signer = _signer, BlockIndex = claimBlockIndex, - Random = new TestRandom(), + RandomSeed = 0, }); var nextMonsterCollectionState = new MonsterCollectionState( @@ -187,7 +187,7 @@ public void Rehearsal() { IAccount nextState = _action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, BlockIndex = 0, Rehearsal = true, diff --git a/.Lib9c.Tests/Action/ClaimRaidRewardTest.cs b/.Lib9c.Tests/Action/ClaimRaidRewardTest.cs index 9607da49b7..08991622bb 100644 --- a/.Lib9c.Tests/Action/ClaimRaidRewardTest.cs +++ b/.Lib9c.Tests/Action/ClaimRaidRewardTest.cs @@ -19,7 +19,7 @@ public ClaimRaidRewardTest() { var tableCsv = TableSheetsImporter.ImportSheets(); _tableSheets = new TableSheets(tableCsv); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); foreach (var kv in tableCsv) { _state = _state.SetState(Addresses.GetSheetAddress(kv.Key), kv.Value.Serialize()); @@ -88,7 +88,7 @@ public void Execute(Type exc, int rank, int latestRank) { Signer = agentAddress, BlockIndex = 5055201L, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, PreviousState = state, }); @@ -115,7 +115,7 @@ public void Execute(Type exc, int rank, int latestRank) { Signer = default, BlockIndex = 5055201L, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, PreviousState = state, })); } diff --git a/.Lib9c.Tests/Action/ClaimStakeReward1Test.cs b/.Lib9c.Tests/Action/ClaimStakeReward1Test.cs index c0c26d3cc7..2500c1eeb2 100644 --- a/.Lib9c.Tests/Action/ClaimStakeReward1Test.cs +++ b/.Lib9c.Tests/Action/ClaimStakeReward1Test.cs @@ -30,7 +30,7 @@ public ClaimStakeReward1Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); sheets[nameof(StakeRegularRewardSheet)] = diff --git a/.Lib9c.Tests/Action/ClaimStakeReward2Test.cs b/.Lib9c.Tests/Action/ClaimStakeReward2Test.cs index e81c19f20b..8c128aa0f3 100644 --- a/.Lib9c.Tests/Action/ClaimStakeReward2Test.cs +++ b/.Lib9c.Tests/Action/ClaimStakeReward2Test.cs @@ -31,7 +31,7 @@ public ClaimStakeReward2Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); sheets[nameof(StakeRegularRewardSheet)] = diff --git a/.Lib9c.Tests/Action/ClaimWorldBossKillRewardTest.cs b/.Lib9c.Tests/Action/ClaimWorldBossKillRewardTest.cs index 2a675ab095..2ff1ad2c1f 100644 --- a/.Lib9c.Tests/Action/ClaimWorldBossKillRewardTest.cs +++ b/.Lib9c.Tests/Action/ClaimWorldBossKillRewardTest.cs @@ -26,7 +26,7 @@ public void Execute(long blockIndex, Type exc) var tableSheets = new TableSheets(sheets); Address agentAddress = new PrivateKey().ToAddress(); Address avatarAddress = new PrivateKey().ToAddress(); - IAccount state = new MockStateDelta(); + IAccount state = new Account(MockState.Empty); var runeWeightSheet = new RuneWeightSheet(); runeWeightSheet.Set(@"id,boss_id,rank,rune_id,weight @@ -88,7 +88,7 @@ public void Execute(long blockIndex, Type exc) BlockIndex = blockIndex, Signer = agentAddress, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, }); var runeCurrency = RuneHelper.ToCurrency(tableSheets.RuneSheet[10001]); @@ -125,7 +125,7 @@ public void Execute(long blockIndex, Type exc) BlockIndex = blockIndex, Signer = default, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/CombinationConsumable0Test.cs b/.Lib9c.Tests/Action/CombinationConsumable0Test.cs index 650c8c95cb..94daf70f7c 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable0Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable0Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable0Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -96,7 +96,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -119,10 +119,10 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } @@ -145,7 +145,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } @@ -175,7 +175,7 @@ public void ExecuteThrowCombinationSlotUnlockException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } @@ -205,7 +205,7 @@ public void ExecuteThrowSheetRowNotFoundException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } @@ -237,7 +237,7 @@ public void ExecuteThrowNotEnoughMaterialException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } diff --git a/.Lib9c.Tests/Action/CombinationConsumable2Test.cs b/.Lib9c.Tests/Action/CombinationConsumable2Test.cs index 1b710aee84..a9b75723d2 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable2Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable2Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable2Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -120,7 +120,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationConsumable3Test.cs b/.Lib9c.Tests/Action/CombinationConsumable3Test.cs index ecbff30098..d6e5381f54 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable3Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable3Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable3Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -120,7 +120,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationConsumable4Test.cs b/.Lib9c.Tests/Action/CombinationConsumable4Test.cs index 4299445de0..bf0f336c70 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable4Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable4Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable4Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -120,7 +120,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationConsumable5Test.cs b/.Lib9c.Tests/Action/CombinationConsumable5Test.cs index 79aa4bd3c1..788c4f8221 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable5Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable5Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable5Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -120,7 +120,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationConsumable6Test.cs b/.Lib9c.Tests/Action/CombinationConsumable6Test.cs index ff98ea856b..57a711289c 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable6Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable6Test.cs @@ -53,7 +53,7 @@ public CombinationConsumable6Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()); @@ -134,7 +134,7 @@ public void Execute(bool backward) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationConsumable7Test.cs b/.Lib9c.Tests/Action/CombinationConsumable7Test.cs index b77b4a845a..79290a09af 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable7Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable7Test.cs @@ -52,7 +52,7 @@ public CombinationConsumable7Test() default ); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()); @@ -132,7 +132,7 @@ public void Execute(bool backward) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = nextState.GetAvatarStateV2(_avatarAddress); diff --git a/.Lib9c.Tests/Action/CombinationConsumable8Test.cs b/.Lib9c.Tests/Action/CombinationConsumable8Test.cs index f61f645056..286a481c47 100644 --- a/.Lib9c.Tests/Action/CombinationConsumable8Test.cs +++ b/.Lib9c.Tests/Action/CombinationConsumable8Test.cs @@ -57,7 +57,7 @@ public CombinationConsumable8Test() var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState( @@ -125,7 +125,7 @@ public void Execute(bool backward) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationEquipment0Test.cs b/.Lib9c.Tests/Action/CombinationEquipment0Test.cs index 30cd3c0dec..981663b9c8 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment0Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment0Test.cs @@ -57,7 +57,7 @@ public CombinationEquipment0Test() #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -110,7 +110,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -137,15 +137,28 @@ public void ExecuteWithSubRecipe() _avatarState.inventory.AddItem2(material, count: materialInfo.Count); } - for (var i = 1; i < row.UnlockStage + 1; i++) + var worldSheet = _tableSheets.WorldSheet; + var worldId = 1; + foreach (var worldRow in worldSheet.OrderedList) { - _avatarState.worldInformation.ClearStage( - 1, - i, - 0, - _tableSheets.WorldSheet, - _tableSheets.WorldUnlockSheet - ); + if (worldRow.StageBegin <= row.UnlockStage && row.UnlockStage <= worldRow.StageEnd) + { + worldId = worldRow.Id; + } + } + + for (int j = 1; j < worldId + 1; j++) + { + for (var i = 1; i < row.UnlockStage + 1; i++) + { + _avatarState.worldInformation.ClearStage( + j, + i, + 0, + _tableSheets.WorldSheet, + _tableSheets.WorldUnlockSheet + ); + } } _initialState = _initialState.SetState(_avatarAddress, _avatarState.Serialize()); @@ -163,7 +176,7 @@ public void ExecuteWithSubRecipe() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -185,9 +198,9 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -238,7 +251,7 @@ public void ExecuteThrowCombinationSlotUnlockException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -276,7 +289,7 @@ public void ExecuteThrowSheetRowNotFoundException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }) ); } @@ -323,7 +336,7 @@ public void ExecuteThrowSheetRowColumnException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -360,7 +373,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -394,7 +407,7 @@ public void ExecuteThrowNotEnoughMaterialException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/CombinationEquipment10Test.cs b/.Lib9c.Tests/Action/CombinationEquipment10Test.cs index 1a6f74915c..c5707b6c44 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment10Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment10Test.cs @@ -5,6 +5,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -16,6 +17,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -46,6 +48,8 @@ public CombinationEquipment10Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -68,7 +72,7 @@ public CombinationEquipment10Test(ITestOutputHelper outputHelper) var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState( @@ -140,7 +144,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -244,7 +248,7 @@ public void MadeWithMimisbrunnrRecipe( PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -343,7 +347,7 @@ private void Execute(bool backward, int recipeId, int? subRecipeId, int mintNCG) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationEquipment11Test.cs b/.Lib9c.Tests/Action/CombinationEquipment11Test.cs index 180671bc74..90f766e707 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment11Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment11Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -49,6 +50,8 @@ public CombinationEquipment11Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -71,7 +74,7 @@ public CombinationEquipment11Test(ITestOutputHelper outputHelper) var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState( @@ -147,7 +150,7 @@ public void Rehearsal() ItemEnhancement10.GetFeeStoreAddress(), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -251,7 +254,7 @@ public void MadeWithMimisbrunnrRecipe( PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -350,7 +353,7 @@ private void Execute(bool backward, int recipeId, int? subRecipeId, int mintNCG) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -402,7 +405,7 @@ private void Execute_ActionObsoletedException() PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment12Test.cs b/.Lib9c.Tests/Action/CombinationEquipment12Test.cs index a9b1f3bc98..968fe2ca30 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment12Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment12Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -21,6 +22,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Nekoyume.TableData.Crystal; using Serilog; using Xunit; @@ -55,6 +57,8 @@ public CombinationEquipment12Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -81,7 +85,7 @@ public CombinationEquipment12Test(ITestOutputHelper outputHelper) _slotAddress, GameConfig.RequireClearedStageLevel.CombinationEquipmentAction); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_slotAddress, combinationSlotState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); @@ -298,7 +302,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, }); var currency = nextState.GetGoldCurrency(); @@ -369,7 +373,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/CombinationEquipment13Test.cs b/.Lib9c.Tests/Action/CombinationEquipment13Test.cs index 43783d29bb..ff13d235fc 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment13Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment13Test.cs @@ -4,6 +4,7 @@ using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -17,6 +18,7 @@ using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Nekoyume.TableData.Crystal; using Serilog; using Xunit; @@ -51,6 +53,8 @@ public CombinationEquipment13Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -76,7 +80,7 @@ public CombinationEquipment13Test(ITestOutputHelper outputHelper) _slotAddress, GameConfig.RequireClearedStageLevel.CombinationEquipmentAction); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_slotAddress, combinationSlotState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); @@ -294,7 +298,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, }); var currency = nextState.GetGoldCurrency(); @@ -365,7 +369,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, })); } } @@ -467,7 +471,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(hammerPointAddress, out List serialized)); @@ -495,7 +499,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment14Test.cs b/.Lib9c.Tests/Action/CombinationEquipment14Test.cs index a6c62c1abd..d95edb9438 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment14Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment14Test.cs @@ -4,6 +4,7 @@ using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -17,6 +18,7 @@ using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Nekoyume.TableData.Crystal; using Serilog; using Xunit; @@ -51,6 +53,8 @@ public CombinationEquipment14Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -77,7 +81,7 @@ public CombinationEquipment14Test(ITestOutputHelper outputHelper) _slotAddress, GameConfig.RequireClearedStageLevel.CombinationEquipmentAction); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_slotAddress, combinationSlotState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); @@ -295,7 +299,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, }); var currency = nextState.GetGoldCurrency(); @@ -366,7 +370,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, })); } } @@ -474,7 +478,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(hammerPointAddress, out List serialized)); @@ -502,7 +506,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment15Test.cs b/.Lib9c.Tests/Action/CombinationEquipment15Test.cs index 9616dbc55b..3430dbdd06 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment15Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment15Test.cs @@ -4,6 +4,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -17,6 +18,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Nekoyume.TableData.Crystal; using Serilog; using Xunit; @@ -51,6 +53,8 @@ public CombinationEquipment15Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -77,7 +81,7 @@ public CombinationEquipment15Test(ITestOutputHelper outputHelper) _slotAddress, GameConfig.RequireClearedStageLevel.CombinationEquipmentAction); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_slotAddress, combinationSlotState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); @@ -295,7 +299,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, }); var currency = nextState.GetGoldCurrency(); @@ -366,7 +370,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, })); } } @@ -474,7 +478,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(hammerPointAddress, out List serialized)); @@ -502,7 +506,7 @@ public void ExecuteBySuperCraft( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment16Test.cs b/.Lib9c.Tests/Action/CombinationEquipment16Test.cs index 4c64920205..4709345ad4 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment16Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment16Test.cs @@ -77,7 +77,7 @@ public CombinationEquipment16Test(ITestOutputHelper outputHelper) _slotAddress, 0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_slotAddress, combinationSlotState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); @@ -90,44 +90,38 @@ public CombinationEquipment16Test(ITestOutputHelper outputHelper) [Theory] // Tutorial recipe. - [InlineData(null, false, false, true, true, false, 3, 0, true, 1L, 1, null, true, false, false, false, false)] + [InlineData(null, false, false, true, true, false, 3, 0, true, 1L, 1, null, true, false, false, false)] // Migration AvatarState. - [InlineData(null, false, false, true, true, true, 3, 0, true, 1L, 1, null, true, false, false, false, false)] + [InlineData(null, false, false, true, true, true, 3, 0, true, 1L, 1, null, true, false, false, false)] // SubRecipe - [InlineData(null, true, true, true, true, false, 11, 0, true, 1L, 2, 1, true, false, false, false, false)] - // Mimisbrunnr Equipment. - [InlineData(null, true, true, true, true, false, 11, 0, true, 1L, 2, 3, true, true, true, false, false)] + [InlineData(null, true, true, true, true, false, 27, 0, true, 1L, 6, 376, true, false, false, false)] // 3rd sub recipe, not Mimisbrunnr Equipment. - [InlineData(null, true, true, true, true, false, 349, 0, true, 1L, 28, 101520003, true, false, false, false, false)] + [InlineData(null, true, true, true, true, false, 349, 0, true, 1L, 28, 101520003, true, false, false, false)] // Purchase CRYSTAL. - [InlineData(null, true, true, true, true, false, 3, 0, true, 1L, 1, null, false, false, false, true, false)] + [InlineData(null, true, true, true, true, false, 3, 0, true, 1L, 1, null, false, false, true, false)] // Purchase CRYSTAL with calculate previous cost. - [InlineData(null, true, true, true, true, false, 3, 0, true, 100_800L, 1, null, false, false, true, true, true)] + [InlineData(null, true, true, true, true, false, 3, 0, true, 100_800L, 1, null, false, false, true, true)] // Arena round not found - [InlineData(null, false, false, true, true, false, 3, 0, true, 0L, 1, null, true, false, false, false, false)] + [InlineData(null, false, false, true, true, false, 3, 0, true, 0L, 1, null, true, false, false, false)] // UnlockEquipmentRecipe not executed. - [InlineData(typeof(FailedLoadStateException), false, true, true, true, false, 11, 0, true, 0L, 2, 1, true, false, false, false, false)] + [InlineData(typeof(FailedLoadStateException), false, true, true, true, false, 11, 0, true, 0L, 6, 1, true, false, false, false)] // CRYSTAL not paid. - [InlineData(typeof(InvalidRecipeIdException), true, false, true, true, false, 11, 0, true, 0L, 2, 1, true, false, false, false, false)] + [InlineData(typeof(InvalidRecipeIdException), true, false, true, true, false, 11, 0, true, 0L, 6, 1, true, false, false, false)] // AgentState not exist. - [InlineData(typeof(FailedLoadStateException), true, true, false, true, false, 3, 0, true, 0L, 1, null, true, false, false, false, false)] + [InlineData(typeof(FailedLoadStateException), true, true, false, true, false, 3, 0, true, 0L, 1, null, true, false, false, false)] // AvatarState not exist. - [InlineData(typeof(FailedLoadStateException), true, true, true, false, false, 3, 0, true, 0L, 1, null, true, false, false, false, false)] - [InlineData(typeof(FailedLoadStateException), true, true, true, false, true, 3, 0, true, 0L, 1, null, true, false, false, false, false)] + [InlineData(typeof(FailedLoadStateException), true, true, true, false, false, 3, 0, true, 0L, 1, null, true, false, false, false)] + [InlineData(typeof(FailedLoadStateException), true, true, true, false, true, 3, 0, true, 0L, 1, null, true, false, false, false)] // Tutorial not cleared. - [InlineData(typeof(NotEnoughClearedStageLevelException), true, true, true, true, false, 1, 0, true, 0L, 1, null, true, false, false, false, false)] + [InlineData(typeof(NotEnoughClearedStageLevelException), true, true, true, true, false, 1, 0, true, 0L, 1, null, true, false, false, false)] // CombinationSlotState not exist. - [InlineData(typeof(FailedLoadStateException), true, true, true, true, false, 3, 5, true, 0L, 1, null, true, false, false, false, false)] + [InlineData(typeof(FailedLoadStateException), true, true, true, true, false, 3, 5, true, 0L, 1, null, true, false, false, false)] // CombinationSlotState locked. - [InlineData(typeof(CombinationSlotUnlockException), true, true, true, true, false, 3, 0, false, 0L, 1, null, true, false, false, false, false)] + [InlineData(typeof(CombinationSlotUnlockException), true, true, true, true, false, 3, 0, false, 0L, 1, null, true, false, false, false)] // Stage not cleared. - [InlineData(typeof(NotEnoughClearedStageLevelException), true, true, true, true, false, 3, 0, true, 0L, 2, null, true, false, false, false, false)] + [InlineData(typeof(NotEnoughClearedStageLevelException), true, true, true, true, false, 3, 0, true, 0L, 6, null, true, false, false, false)] // Not enough material. - [InlineData(typeof(NotEnoughMaterialException), true, true, true, true, false, 3, 0, true, 0L, 1, null, false, false, false, false, false)] - // Purchase CRYSTAL failed by Mimisbrunnr material. - [InlineData(typeof(ArgumentException), true, true, true, true, false, 11, 0, true, 0L, 2, 3, false, false, true, true, false)] - // Insufficient NCG. - [InlineData(typeof(InsufficientBalanceException), true, true, true, true, false, 11, 0, true, 1L, 2, 3, true, false, true, false, false)] + [InlineData(typeof(NotEnoughMaterialException), true, true, true, true, false, 3, 0, true, 0L, 1, null, false, false, false, false)] public void Execute( Type exc, bool unlockIdsExist, @@ -143,7 +137,6 @@ public void Execute( int? subRecipeId, bool enoughMaterial, bool ncgBalanceExist, - bool mimisbrunnr, bool payByCrystal, bool previousCostStateExist ) @@ -297,7 +290,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, }); var currency = nextState.GetGoldCurrency(); @@ -319,21 +312,6 @@ bool previousCostStateExist var feeStoreAddress = Addresses.GetBlacksmithFeeAddress(arenaData.ChampionshipId, arenaData.Round); Assert.Equal(450 * currency, nextState.GetBalance(feeStoreAddress, currency)); } - - Assert.Equal(mimisbrunnr, equipment.MadeWithMimisbrunnrRecipe); - Assert.Equal( - mimisbrunnr, - equipment.IsMadeWithMimisbrunnrRecipe( - _tableSheets.EquipmentItemRecipeSheet, - _tableSheets.EquipmentItemSubRecipeSheetV2, - _tableSheets.EquipmentItemOptionSheet - ) - ); - - if (mimisbrunnr) - { - Assert.Equal(ElementalType.Fire, equipment.ElementalType); - } } else { @@ -368,7 +346,7 @@ bool previousCostStateExist PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = _random, + RandomSeed = _random.Seed, })); } } @@ -378,7 +356,6 @@ bool previousCostStateExist [InlineData(null, false, 0, 1)] [InlineData(typeof(NotEnoughFungibleAssetValueException), true, 1, 1)] [InlineData(null, true, 1, 1)] - [InlineData(typeof(ArgumentException), true, 0, 2)] [InlineData(typeof(NotEnoughHammerPointException), true, 1, 1)] public void ExecuteWithCheckingHammerPointState( Type exc, @@ -476,7 +453,7 @@ public void ExecuteWithCheckingHammerPointState( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(hammerPointAddress, out List serialized)); @@ -504,7 +481,7 @@ public void ExecuteWithCheckingHammerPointState( PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment2Test.cs b/.Lib9c.Tests/Action/CombinationEquipment2Test.cs index 13f59f62db..0820ac5fd2 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment2Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment2Test.cs @@ -57,7 +57,7 @@ public CombinationEquipment2Test() #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -129,7 +129,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationEquipment3Test.cs b/.Lib9c.Tests/Action/CombinationEquipment3Test.cs index dd70f83399..f6c10f5648 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment3Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment3Test.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System.Collections.Generic; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -12,6 +13,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -42,6 +44,8 @@ public CombinationEquipment3Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_agentAddress); @@ -62,7 +66,7 @@ public CombinationEquipment3Test(ITestOutputHelper outputHelper) #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -142,7 +146,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -207,7 +211,7 @@ public void ExecuteThrowInsufficientBalanceException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment4Test.cs b/.Lib9c.Tests/Action/CombinationEquipment4Test.cs index 250f8faf7c..fa22f1fdd7 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment4Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment4Test.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System.Collections.Generic; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -12,6 +13,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -42,6 +44,8 @@ public CombinationEquipment4Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_agentAddress); @@ -62,7 +66,7 @@ public CombinationEquipment4Test(ITestOutputHelper outputHelper) #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -142,7 +146,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -206,7 +210,7 @@ public void ExecuteThrowInsufficientBalanceException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment5Test.cs b/.Lib9c.Tests/Action/CombinationEquipment5Test.cs index 0d8574eaa6..9fc9b3b06c 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment5Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment5Test.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System.Collections.Generic; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -12,6 +13,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -42,6 +44,8 @@ public CombinationEquipment5Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_agentAddress); @@ -62,7 +66,7 @@ public CombinationEquipment5Test(ITestOutputHelper outputHelper) #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -142,7 +146,7 @@ public void Execute() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -206,7 +210,7 @@ public void ExecuteThrowInsufficientBalanceException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/CombinationEquipment6Test.cs b/.Lib9c.Tests/Action/CombinationEquipment6Test.cs index 199fbc62a8..58ae9a58d0 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment6Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment6Test.cs @@ -4,6 +4,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -13,6 +14,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -44,6 +46,8 @@ public CombinationEquipment6Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_agentAddress); @@ -64,7 +68,7 @@ public CombinationEquipment6Test(ITestOutputHelper outputHelper) #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -157,7 +161,7 @@ public void Execute(bool backward) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -221,7 +225,7 @@ public void ExecuteThrowInsufficientBalanceException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -254,7 +258,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { diff --git a/.Lib9c.Tests/Action/CombinationEquipment7Test.cs b/.Lib9c.Tests/Action/CombinationEquipment7Test.cs index 801f31062e..6a075dd6bf 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment7Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment7Test.cs @@ -4,6 +4,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -13,6 +14,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -44,6 +46,8 @@ public CombinationEquipment7Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); var agentState = new AgentState(_agentAddress); @@ -64,7 +68,7 @@ public CombinationEquipment7Test(ITestOutputHelper outputHelper) #pragma warning restore CS0618 var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState( @@ -158,7 +162,7 @@ public void Execute(bool backward) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = nextState.GetAvatarStateV2(_avatarAddress); @@ -220,7 +224,7 @@ public void ExecuteThrowInsufficientBalanceException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -253,7 +257,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { diff --git a/.Lib9c.Tests/Action/CombinationEquipment8Test.cs b/.Lib9c.Tests/Action/CombinationEquipment8Test.cs index 41e9c16443..17fe93c6a5 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment8Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment8Test.cs @@ -5,6 +5,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -15,6 +16,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -45,6 +47,8 @@ public CombinationEquipment8Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -67,7 +71,7 @@ public CombinationEquipment8Test(ITestOutputHelper outputHelper) var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState( @@ -139,7 +143,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -252,7 +256,7 @@ private void Execute(bool backward, int recipeId, int? subRecipeId, int mintNCG) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/CombinationEquipment9Test.cs b/.Lib9c.Tests/Action/CombinationEquipment9Test.cs index b381267793..cc975e9369 100644 --- a/.Lib9c.Tests/Action/CombinationEquipment9Test.cs +++ b/.Lib9c.Tests/Action/CombinationEquipment9Test.cs @@ -5,6 +5,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Globalization; using System.Linq; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -15,6 +16,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Serilog; using Xunit; using Xunit.Abstractions; @@ -45,6 +47,8 @@ public CombinationEquipment9Test(ITestOutputHelper outputHelper) ) ); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemRecipeSheet)] = + EquipmentItemSheetFixture.EquipmentItemRecipeSheetWithMimisbrunnr; _random = new TestRandom(); _tableSheets = new TableSheets(sheets); @@ -67,7 +71,7 @@ public CombinationEquipment9Test(ITestOutputHelper outputHelper) var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState( @@ -139,7 +143,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -252,7 +256,7 @@ private void Execute(bool backward, int recipeId, int? subRecipeId, int mintNCG) PreviousState = previousState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/Coupons/IssueCouponsTest.cs b/.Lib9c.Tests/Action/Coupons/IssueCouponsTest.cs index 457168fde5..6d24341603 100644 --- a/.Lib9c.Tests/Action/Coupons/IssueCouponsTest.cs +++ b/.Lib9c.Tests/Action/Coupons/IssueCouponsTest.cs @@ -18,7 +18,7 @@ public class IssueCouponsTest [Fact] public void Execute() { - IAccount state = new Lib9c.Tests.Action.MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState( AdminState.Address, new AdminState(CouponsFixture.AgentAddress1, 1) @@ -34,7 +34,7 @@ public void Execute() { PreviousState = state, Rehearsal = false, - Random = random, + RandomSeed = random.Seed, BlockIndex = long.MaxValue, Signer = CouponsFixture.AgentAddress1, })); @@ -48,7 +48,7 @@ public void Execute() { PreviousState = state, Rehearsal = false, - Random = random, + RandomSeed = random.Seed, BlockIndex = 0, Signer = CouponsFixture.AgentAddress2, })); @@ -63,7 +63,7 @@ public void Execute() { PreviousState = state, Rehearsal = false, - Random = random, + RandomSeed = random.Seed, BlockIndex = 0, Signer = CouponsFixture.AgentAddress1, }) @@ -81,7 +81,7 @@ public void Execute() { PreviousState = state, Rehearsal = true, - Random = random, + RandomSeed = random.Seed, BlockIndex = 0, Signer = CouponsFixture.AgentAddress1, }) @@ -97,7 +97,7 @@ public void Execute() { PreviousState = state, Rehearsal = false, - Random = random, + RandomSeed = random.Seed, BlockIndex = 0, Signer = CouponsFixture.AgentAddress1, }); @@ -111,7 +111,7 @@ public void Execute() { PreviousState = state, Rehearsal = false, - Random = random, + RandomSeed = random.Seed, BlockIndex = 0, Signer = CouponsFixture.AgentAddress1, }); diff --git a/.Lib9c.Tests/Action/Coupons/RedeemCouponTest.cs b/.Lib9c.Tests/Action/Coupons/RedeemCouponTest.cs index 0b24fd3fcf..5133261171 100644 --- a/.Lib9c.Tests/Action/Coupons/RedeemCouponTest.cs +++ b/.Lib9c.Tests/Action/Coupons/RedeemCouponTest.cs @@ -20,7 +20,7 @@ public void Execute() { IRandom random = new TestRandom(); var sheets = TableSheetsImporter.ImportSheets(); - IAccount state = new Lib9c.Tests.Action.MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState( Addresses.GameConfig, new GameConfigState(sheets[nameof(GameConfigSheet)]).Serialize() @@ -119,7 +119,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, })); var agent1CouponWallet = state.GetCouponWallet(CouponsFixture.AgentAddress1); @@ -148,7 +148,7 @@ public void Execute() PreviousState = state, Rehearsal = true, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); Assert.Equal( @@ -184,7 +184,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); Assert.Equal( expected.SerializeV2(), @@ -200,7 +200,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); Assert.Equal( expected.SerializeV2(), @@ -219,7 +219,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); Assert.Null( state.GetAvatarStateV2( @@ -239,7 +239,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); Assert.Equal( expected.SerializeV2(), @@ -257,7 +257,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); var actual = state.GetAvatarStateV2(agent1Avatar0Address); Assert.Equal( @@ -279,7 +279,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); actual = state.GetAvatarStateV2(agent1Avatar1Address); Assert.Equal(0, state.GetAvatarStateV2(agent1Avatar1Address).inventory.Items.Count); @@ -296,7 +296,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); actual = state.GetAvatarStateV2(agent1Avatar1Address); Assert.Equal( @@ -316,7 +316,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress2, - Random = random, + RandomSeed = random.Seed, }); actual = state.GetAvatarStateV2(agent2Avatar0Address); Assert.Equal( @@ -338,7 +338,7 @@ public void Execute() PreviousState = state, Rehearsal = false, Signer = CouponsFixture.AgentAddress1, - Random = random, + RandomSeed = random.Seed, }); actual = state.GetAvatarStateV2(agent1Avatar0Address); var aggregateRewardSet = CouponsFixture.RewardSet1.Aggregate( diff --git a/.Lib9c.Tests/Action/Coupons/TransferCouponsTest.cs b/.Lib9c.Tests/Action/Coupons/TransferCouponsTest.cs index 3aae3bf4b3..fab6b8e805 100644 --- a/.Lib9c.Tests/Action/Coupons/TransferCouponsTest.cs +++ b/.Lib9c.Tests/Action/Coupons/TransferCouponsTest.cs @@ -17,7 +17,7 @@ public class TransferCouponsTest [Fact] public void Execute() { - IAccount state = new Lib9c.Tests.Action.MockStateDelta(); + IAccount state = new Account(MockState.Empty); IRandom random = new TestRandom(); var coupon1 = new Coupon(CouponsFixture.Guid1, CouponsFixture.RewardSet1); diff --git a/.Lib9c.Tests/Action/CreateAvatar0Test.cs b/.Lib9c.Tests/Action/CreateAvatar0Test.cs index 48aa3fd8f1..7251dd2169 100644 --- a/.Lib9c.Tests/Action/CreateAvatar0Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar0Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -53,7 +54,7 @@ public void Execute() var sheets = TableSheetsImporter.ImportSheets(); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState( Addresses.GoldDistribution, @@ -112,7 +113,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -146,7 +147,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(_avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(_avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -163,7 +164,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar0() { avatarAddress = _avatarAddress, @@ -192,7 +193,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) { var agentState = new AgentState(_agentAddress); agentState.avatarAddresses[index] = _avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar0() { @@ -254,7 +255,7 @@ public void Rehearsal() updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.Ranking, new RankingState0().Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); diff --git a/.Lib9c.Tests/Action/CreateAvatar10Test.cs b/.Lib9c.Tests/Action/CreateAvatar10Test.cs index a1597eb49b..49a3b0f64d 100644 --- a/.Lib9c.Tests/Action/CreateAvatar10Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar10Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -44,7 +45,7 @@ public void Execute(long blockIndex) }; var sheets = TableSheetsImporter.ImportSheets(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState( Addresses.GameConfig, new GameConfigState(sheets[nameof(GameConfigSheet)]).Serialize() @@ -62,7 +63,7 @@ public void Execute(long blockIndex) PreviousState = state, Signer = _agentAddress, BlockIndex = blockIndex, - Random = new TestRandom(), + RandomSeed = 0, }); var avatarAddress = _agentAddress.Derive( @@ -115,7 +116,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -156,7 +157,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -173,7 +174,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar10() { index = index, @@ -208,7 +209,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar10() { @@ -278,7 +279,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -358,7 +359,7 @@ public void MintAsset() var avatarAddress = new PrivateKey().ToAddress(); var agentAddress = new PrivateKey().ToAddress(); var avatarState = new AvatarState(avatarAddress, agentAddress, 0L, _tableSheets.GetAvatarSheets(), new GameConfigState(), default, "test"); - var nextState = CreateAvatar10.MintAsset(createAvatarFavSheet, avatarState, new MockStateDelta(), new ActionContext()); + var nextState = CreateAvatar10.MintAsset(createAvatarFavSheet, avatarState, new Account(MockState.Empty), new ActionContext()); foreach (var row in createAvatarFavSheet.Values) { var targetAddress = row.Target == CreateAvatarFavSheet.Target.Agent diff --git a/.Lib9c.Tests/Action/CreateAvatar2Test.cs b/.Lib9c.Tests/Action/CreateAvatar2Test.cs index e782aef08f..639b71e0a8 100644 --- a/.Lib9c.Tests/Action/CreateAvatar2Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar2Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -50,7 +51,7 @@ public void Execute() var sheets = TableSheetsImporter.ImportSheets(); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState( Addresses.GoldDistribution, @@ -115,7 +116,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -156,7 +157,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -173,7 +174,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar2() { index = index, @@ -208,7 +209,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar2() { @@ -277,7 +278,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.Ranking, new RankingState0().Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); diff --git a/.Lib9c.Tests/Action/CreateAvatar3Test.cs b/.Lib9c.Tests/Action/CreateAvatar3Test.cs index b14e79446b..974cedc017 100644 --- a/.Lib9c.Tests/Action/CreateAvatar3Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar3Test.cs @@ -6,6 +6,7 @@ using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -51,7 +52,7 @@ public void Execute() var sheets = TableSheetsImporter.ImportSheets(); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState( Addresses.GoldDistribution, @@ -117,7 +118,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -158,7 +159,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -175,7 +176,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar3() { index = index, @@ -210,7 +211,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar3() { @@ -282,7 +283,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.Ranking, new RankingState0().Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); diff --git a/.Lib9c.Tests/Action/CreateAvatar6Test.cs b/.Lib9c.Tests/Action/CreateAvatar6Test.cs index ad4dbd024d..97c1c04029 100644 --- a/.Lib9c.Tests/Action/CreateAvatar6Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar6Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -51,7 +52,7 @@ public void Execute() var sheets = TableSheetsImporter.ImportSheets(); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState( Addresses.GoldDistribution, @@ -117,7 +118,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -158,7 +159,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -175,7 +176,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar6() { index = index, @@ -210,7 +211,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar6() { @@ -282,7 +283,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(Addresses.Ranking, new RankingState0().Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()); diff --git a/.Lib9c.Tests/Action/CreateAvatar7Test.cs b/.Lib9c.Tests/Action/CreateAvatar7Test.cs index d5e47bd077..a0f92fdf6d 100644 --- a/.Lib9c.Tests/Action/CreateAvatar7Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar7Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -45,7 +46,7 @@ public void Execute() #pragma warning restore CS0618 var sheets = TableSheetsImporter.ImportSheets(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState( Addresses.GameConfig, new GameConfigState(sheets[nameof(GameConfigSheet)]).Serialize() @@ -98,7 +99,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -139,7 +140,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -156,7 +157,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar7() { index = index, @@ -191,7 +192,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar7() { @@ -261,7 +262,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/CreateAvatar8Test.cs b/.Lib9c.Tests/Action/CreateAvatar8Test.cs index 2ed1aa2140..c8d8fba49c 100644 --- a/.Lib9c.Tests/Action/CreateAvatar8Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar8Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -41,7 +42,7 @@ public void Execute() }; var sheets = TableSheetsImporter.ImportSheets(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState( Addresses.GameConfig, new GameConfigState(sheets[nameof(GameConfigSheet)]).Serialize() @@ -97,7 +98,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -138,7 +139,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -155,7 +156,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar8() { index = index, @@ -190,7 +191,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar8() { @@ -260,7 +261,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/CreateAvatar9Test.cs b/.Lib9c.Tests/Action/CreateAvatar9Test.cs index ffcdb8c410..32e9d10dc8 100644 --- a/.Lib9c.Tests/Action/CreateAvatar9Test.cs +++ b/.Lib9c.Tests/Action/CreateAvatar9Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.IO; using System.Linq; using System.Runtime.Serialization.Formatters.Binary; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -46,7 +47,7 @@ public void Execute(long blockIndex, int expected, bool avatarItemSheetExist, bo }; var sheets = TableSheetsImporter.ImportSheets(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState( Addresses.GameConfig, new GameConfigState(sheets[nameof(GameConfigSheet)]).Serialize() @@ -124,7 +125,7 @@ public void ExecuteThrowInvalidNamePatterException(string nickName) name = nickName, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.Throws(() => action.Execute(new ActionContext() { @@ -165,7 +166,7 @@ public void ExecuteThrowInvalidAddressException() name = "test", }; - var state = new MockStateDelta().SetState(avatarAddress, avatarState.Serialize()); + var state = new Account(MockState.Empty).SetState(avatarAddress, avatarState.Serialize()); Assert.Throws(() => action.Execute(new ActionContext() { @@ -182,7 +183,7 @@ public void ExecuteThrowInvalidAddressException() public void ExecuteThrowAvatarIndexOutOfRangeException(int index) { var agentState = new AgentState(_agentAddress); - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar9() { index = index, @@ -217,7 +218,7 @@ public void ExecuteThrowAvatarIndexAlreadyUsedException(int index) ) ); agentState.avatarAddresses[index] = avatarAddress; - var state = new MockStateDelta().SetState(_agentAddress, agentState.Serialize()); + var state = new Account(MockState.Empty).SetState(_agentAddress, agentState.Serialize()); var action = new CreateAvatar9() { @@ -287,7 +288,7 @@ public void Rehearsal(int index) updatedAddresses.Add(slotAddress); } - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/CreatePendingActivationTest.cs b/.Lib9c.Tests/Action/CreatePendingActivationTest.cs index 2a09ec848b..df64cc87dc 100644 --- a/.Lib9c.Tests/Action/CreatePendingActivationTest.cs +++ b/.Lib9c.Tests/Action/CreatePendingActivationTest.cs @@ -21,7 +21,7 @@ public void Execute() var action = new CreatePendingActivation(pendingActivation); var adminAddress = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var adminState = new AdminState(adminAddress, 100); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, adminState.Serialize())); var actionContext = new ActionContext() @@ -49,7 +49,7 @@ public void CheckPermission() var action = new CreatePendingActivation(pendingActivation); var adminAddress = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var adminState = new AdminState(adminAddress, 100); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, adminState.Serialize())); @@ -87,7 +87,7 @@ public void Rehearsal() BlockIndex = 101, Signer = default, Rehearsal = true, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), } ); Assert.Equal( diff --git a/.Lib9c.Tests/Action/CreatePendingActivationsTest.cs b/.Lib9c.Tests/Action/CreatePendingActivationsTest.cs index 41d7797fba..e236ef6ec9 100644 --- a/.Lib9c.Tests/Action/CreatePendingActivationsTest.cs +++ b/.Lib9c.Tests/Action/CreatePendingActivationsTest.cs @@ -2,6 +2,7 @@ namespace Lib9c.Tests.Action { using System.Linq; using Bencodex.Types; + using Libplanet.Action.State; using Libplanet.Crypto; using Nekoyume.Action; using Nekoyume.Model.State; @@ -26,7 +27,7 @@ PendingActivationState CreatePendingActivation() var action = new CreatePendingActivations(activations); var adminAddress = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var adminState = new AdminState(adminAddress, 100); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, adminState.Serialize())); var actionContext = new ActionContext() @@ -77,7 +78,7 @@ public void CheckPermission() var action = new CreatePendingActivations(); var adminAddress = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var adminState = new AdminState(adminAddress, 100); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, adminState.Serialize())); diff --git a/.Lib9c.Tests/Action/CreatePledgeTest.cs b/.Lib9c.Tests/Action/CreatePledgeTest.cs index 245ad8622c..c52806ad63 100644 --- a/.Lib9c.Tests/Action/CreatePledgeTest.cs +++ b/.Lib9c.Tests/Action/CreatePledgeTest.cs @@ -34,7 +34,7 @@ public void Execute(bool admin, Type exc) var agentAddress = new PrivateKey().ToAddress(); var pledgeAddress = agentAddress.GetPledgeAddress(); var context = new ActionContext(); - IAccount states = new MockStateDelta() + IAccount states = new Account(MockState.Empty) .SetState(Addresses.Admin, adminState.Serialize()) .MintAsset(context, patronAddress, 4 * 500 * mead); diff --git a/.Lib9c.Tests/Action/DailyReward0Test.cs b/.Lib9c.Tests/Action/DailyReward0Test.cs index 18cff1ba85..8ee7adf08b 100644 --- a/.Lib9c.Tests/Action/DailyReward0Test.cs +++ b/.Lib9c.Tests/Action/DailyReward0Test.cs @@ -22,7 +22,7 @@ public DailyReward0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -84,7 +84,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) diff --git a/.Lib9c.Tests/Action/DailyReward2Test.cs b/.Lib9c.Tests/Action/DailyReward2Test.cs index ead161381c..aae8b3ccaa 100644 --- a/.Lib9c.Tests/Action/DailyReward2Test.cs +++ b/.Lib9c.Tests/Action/DailyReward2Test.cs @@ -24,7 +24,7 @@ public DailyReward2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -67,7 +67,7 @@ public void Execute() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -97,7 +97,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) diff --git a/.Lib9c.Tests/Action/DailyReward3Test.cs b/.Lib9c.Tests/Action/DailyReward3Test.cs index 5b01cbad16..0a299a2594 100644 --- a/.Lib9c.Tests/Action/DailyReward3Test.cs +++ b/.Lib9c.Tests/Action/DailyReward3Test.cs @@ -24,7 +24,7 @@ public DailyReward3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -67,7 +67,7 @@ public void Execute() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -97,7 +97,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) diff --git a/.Lib9c.Tests/Action/DailyReward4Test.cs b/.Lib9c.Tests/Action/DailyReward4Test.cs index cb157d8761..b428880f4e 100644 --- a/.Lib9c.Tests/Action/DailyReward4Test.cs +++ b/.Lib9c.Tests/Action/DailyReward4Test.cs @@ -27,7 +27,7 @@ public DailyReward4Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -82,7 +82,7 @@ public void Execute(bool backward) { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -112,7 +112,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) @@ -130,8 +130,8 @@ public void Rehearsal() var nextState = action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Rehearsal = true, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/DailyReward5Test.cs b/.Lib9c.Tests/Action/DailyReward5Test.cs index 6c4312a2e2..2a43430b37 100644 --- a/.Lib9c.Tests/Action/DailyReward5Test.cs +++ b/.Lib9c.Tests/Action/DailyReward5Test.cs @@ -25,7 +25,7 @@ public DailyReward5Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -69,8 +69,8 @@ public void Rehearsal() var nextState = action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Rehearsal = true, Signer = _agentAddress, }); @@ -100,7 +100,7 @@ public void Execute(int avatarStateSerializedVersion) break; } - var nextState = ExecuteInternal(previousStates, 1800); + var nextState = ExecuteInternal(previousStates, 2040); var nextGameConfigState = nextState.GetGameConfigState(); var nextAvatarState = avatarStateSerializedVersion switch { @@ -118,15 +118,15 @@ public void Execute(int avatarStateSerializedVersion) [Fact] public void Execute_Throw_FailedLoadStateException() => - Assert.Throws(() => ExecuteInternal(new MockStateDelta())); + Assert.Throws(() => ExecuteInternal(new Account(MockState.Empty))); [Theory] [InlineData(0, 0, true)] - [InlineData(0, 1799, true)] - [InlineData(0, 1800, false)] - [InlineData(1800, 1800, true)] - [InlineData(1800, 1800 + 1799, true)] - [InlineData(1800, 1800 + 1800, false)] + [InlineData(0, 2039, true)] + [InlineData(0, 2040, false)] + [InlineData(2040, 2040, true)] + [InlineData(2040, 2040 + 2039, true)] + [InlineData(2040, 2040 + 2040, false)] public void Execute_Throw_RequiredBlockIndexException( long dailyRewardReceivedIndex, long executeBlockIndex, @@ -163,7 +163,7 @@ private IAccount ExecuteInternal(IAccount previousStates, long blockIndex = 0) { BlockIndex = blockIndex, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/DailyReward6Test.cs b/.Lib9c.Tests/Action/DailyReward6Test.cs index 2ce4d81fc4..97bd465914 100644 --- a/.Lib9c.Tests/Action/DailyReward6Test.cs +++ b/.Lib9c.Tests/Action/DailyReward6Test.cs @@ -27,7 +27,7 @@ public DailyReward6Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -71,8 +71,8 @@ public void Rehearsal() var nextState = action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Rehearsal = true, Signer = _agentAddress, }); @@ -105,7 +105,7 @@ public void Execute(int avatarStateSerializedVersion) break; } - var nextState = ExecuteInternal(previousStates, 1800); + var nextState = ExecuteInternal(previousStates, 2040); var nextGameConfigState = nextState.GetGameConfigState(); var nextAvatarState = nextState.GetAvatarStateV2(_avatarAddress); Assert.NotNull(nextAvatarState); @@ -121,15 +121,15 @@ public void Execute(int avatarStateSerializedVersion) [Fact] public void Execute_Throw_FailedLoadStateException() => - Assert.Throws(() => ExecuteInternal(new MockStateDelta())); + Assert.Throws(() => ExecuteInternal(new Account(MockState.Empty))); [Theory] [InlineData(0, 0, true)] - [InlineData(0, 1799, true)] - [InlineData(0, 1800, false)] - [InlineData(1800, 1800, true)] - [InlineData(1800, 1800 + 1799, true)] - [InlineData(1800, 1800 + 1800, false)] + [InlineData(0, 2039, true)] + [InlineData(0, 2040, false)] + [InlineData(2040, 2040, true)] + [InlineData(2040, 2040 + 2039, true)] + [InlineData(2040, 2040 + 2040, false)] public void Execute_Throw_RequiredBlockIndexException( long dailyRewardReceivedIndex, long executeBlockIndex, @@ -191,7 +191,7 @@ private IAccount ExecuteInternal(IAccount previousStates, long blockIndex = 0) { BlockIndex = blockIndex, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/DailyRewardTest.cs b/.Lib9c.Tests/Action/DailyRewardTest.cs index 8546b5306b..8c00f14f11 100644 --- a/.Lib9c.Tests/Action/DailyRewardTest.cs +++ b/.Lib9c.Tests/Action/DailyRewardTest.cs @@ -25,7 +25,7 @@ public DailyRewardTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -69,8 +69,8 @@ public void Rehearsal() var nextState = action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), - Random = new TestRandom(), + PreviousState = new Account(MockState.Empty), + RandomSeed = 0, Rehearsal = true, Signer = _agentAddress, }); @@ -96,7 +96,7 @@ public void Execute(bool legacy) break; } - var nextState = ExecuteInternal(previousStates, 1800); + var nextState = ExecuteInternal(previousStates, 2040); var nextGameConfigState = nextState.GetGameConfigState(); nextState.TryGetAvatarStateV2(_agentAddress, _avatarAddress, out var nextAvatarState, out var migrationRequired); Assert.Equal(legacy, migrationRequired); @@ -113,15 +113,15 @@ public void Execute(bool legacy) [Fact] public void Execute_Throw_FailedLoadStateException() => - Assert.Throws(() => ExecuteInternal(new MockStateDelta())); + Assert.Throws(() => ExecuteInternal(new Account(MockState.Empty))); [Theory] [InlineData(0, 0, true)] - [InlineData(0, 1799, true)] - [InlineData(0, 1800, false)] - [InlineData(1800, 1800, true)] - [InlineData(1800, 1800 + 1799, true)] - [InlineData(1800, 1800 + 1800, false)] + [InlineData(0, 2039, true)] + [InlineData(0, 2040, false)] + [InlineData(2040, 2040, true)] + [InlineData(2040, 2040 + 2039, true)] + [InlineData(2040, 2040 + 2040, false)] public void Execute_Throw_RequiredBlockIndexException( long dailyRewardReceivedIndex, long executeBlockIndex, @@ -183,7 +183,7 @@ private IAccount ExecuteInternal(IAccount previousStates, long blockIndex = 0) { BlockIndex = blockIndex, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/EndPledgeTest.cs b/.Lib9c.Tests/Action/EndPledgeTest.cs index 88c37da116..0ed6aab81f 100644 --- a/.Lib9c.Tests/Action/EndPledgeTest.cs +++ b/.Lib9c.Tests/Action/EndPledgeTest.cs @@ -19,7 +19,7 @@ public void Execute(int balance) var patron = new PrivateKey().ToAddress(); var agent = new PrivateKey().ToAddress(); var context = new ActionContext(); - IAccount states = new MockStateDelta() + IAccount states = new Account(MockState.Empty) .SetState(agent.GetPledgeAddress(), List.Empty.Add(patron.Serialize()).Add(true.Serialize())); var mead = Currencies.Mead; if (balance > 0) @@ -52,7 +52,7 @@ public void Execute_Throw_Exception(bool invalidSigner, bool invalidAgent, Type Address patron = new PrivateKey().ToAddress(); Address agent = new PrivateKey().ToAddress(); List contract = List.Empty.Add(patron.Serialize()).Add(true.Serialize()); - IAccount states = new MockStateDelta().SetState(agent.GetPledgeAddress(), contract); + IAccount states = new Account(MockState.Empty).SetState(agent.GetPledgeAddress(), contract); var action = new EndPledge { diff --git a/.Lib9c.Tests/Action/EventConsumableItemCrafts0Test.cs b/.Lib9c.Tests/Action/EventConsumableItemCrafts0Test.cs index ec05b42bdd..f3dfd1c6a7 100644 --- a/.Lib9c.Tests/Action/EventConsumableItemCrafts0Test.cs +++ b/.Lib9c.Tests/Action/EventConsumableItemCrafts0Test.cs @@ -24,7 +24,7 @@ public class EventConsumableItemCrafts0Test public EventConsumableItemCrafts0Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -155,7 +155,7 @@ private void Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventDungeonBattleV1Test.cs b/.Lib9c.Tests/Action/EventDungeonBattleV1Test.cs index bcadbac61e..4c1204ece2 100644 --- a/.Lib9c.Tests/Action/EventDungeonBattleV1Test.cs +++ b/.Lib9c.Tests/Action/EventDungeonBattleV1Test.cs @@ -29,7 +29,7 @@ public class EventDungeonBattleV1Test public EventDungeonBattleV1Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 @@ -417,7 +417,7 @@ private IAccount Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventDungeonBattleV2Test.cs b/.Lib9c.Tests/Action/EventDungeonBattleV2Test.cs index b1929e735c..685463ec8d 100644 --- a/.Lib9c.Tests/Action/EventDungeonBattleV2Test.cs +++ b/.Lib9c.Tests/Action/EventDungeonBattleV2Test.cs @@ -29,7 +29,7 @@ public class EventDungeonBattleV2Test public EventDungeonBattleV2Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 @@ -431,7 +431,7 @@ private IAccount Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventDungeonBattleV3Test.cs b/.Lib9c.Tests/Action/EventDungeonBattleV3Test.cs index 122a6a7e09..80969c7e0b 100644 --- a/.Lib9c.Tests/Action/EventDungeonBattleV3Test.cs +++ b/.Lib9c.Tests/Action/EventDungeonBattleV3Test.cs @@ -29,7 +29,7 @@ public class EventDungeonBattleV3Test public EventDungeonBattleV3Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 @@ -430,7 +430,7 @@ private IAccount Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventDungeonBattleV4Test.cs b/.Lib9c.Tests/Action/EventDungeonBattleV4Test.cs index 498534a8ae..d19a701981 100644 --- a/.Lib9c.Tests/Action/EventDungeonBattleV4Test.cs +++ b/.Lib9c.Tests/Action/EventDungeonBattleV4Test.cs @@ -30,7 +30,7 @@ public class EventDungeonBattleV4Test public EventDungeonBattleV4Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 @@ -374,7 +374,7 @@ public void Execute_DuplicatedException(int slotIndex, int runeId, int slotIndex BlockIndex = 1, PreviousState = _initialStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(exception, () => @@ -478,7 +478,7 @@ private IAccount Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventDungeonBattleV5Test.cs b/.Lib9c.Tests/Action/EventDungeonBattleV5Test.cs index 44af7acb39..9db984f2c1 100644 --- a/.Lib9c.Tests/Action/EventDungeonBattleV5Test.cs +++ b/.Lib9c.Tests/Action/EventDungeonBattleV5Test.cs @@ -31,7 +31,7 @@ public class EventDungeonBattleV5Test public EventDungeonBattleV5Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); #pragma warning disable CS0618 // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 @@ -375,7 +375,7 @@ public void Execute_DuplicatedException(int slotIndex, int runeId, int slotIndex BlockIndex = 1, PreviousState = _initialStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.Throws(exception, () => @@ -479,7 +479,7 @@ private IAccount Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/EventMaterialItemCrafts0Test.cs b/.Lib9c.Tests/Action/EventMaterialItemCrafts0Test.cs index 96a38cdc9c..3dbd1a3c75 100644 --- a/.Lib9c.Tests/Action/EventMaterialItemCrafts0Test.cs +++ b/.Lib9c.Tests/Action/EventMaterialItemCrafts0Test.cs @@ -26,7 +26,7 @@ public class EventMaterialItemCrafts0Test public EventMaterialItemCrafts0Test() { - _initialStates = new MockStateDelta(); + _initialStates = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -83,43 +83,12 @@ public static IEnumerable GetExecuteSuccessMemberData() { 1002, 10020001, - new Dictionary - { - [700000] = 5, - [700001] = 5, - [700002] = 5, - }, - }; - yield return new object[] - { - 1002, - 10020001, - new Dictionary - { - [700102] = 5, - [700104] = 5, - [700106] = 5, - }, - }; - yield return new object[] - { - 1002, - 10020001, - new Dictionary - { - [700202] = 10, - [700204] = 5, - }, }; + yield return new object[] { 1002, 10020002, - new Dictionary - { - [700108] = 5, - [700206] = 5, - }, }; } @@ -171,11 +140,27 @@ public static IEnumerable GetExecuteInvalidMaterialCountExceptionMembe [MemberData(nameof(GetExecuteSuccessMemberData))] public void Execute_Success( int eventScheduleId, - int eventMaterialItemRecipeId, - Dictionary materialsToUse) + int eventMaterialItemRecipeId) { Assert.True(_tableSheets.EventScheduleSheet .TryGetValue(eventScheduleId, out var scheduleRow)); + var materialsToUse = new Dictionary(); + var totalCount = 0; + var row = _tableSheets.EventMaterialItemRecipeSheet[eventMaterialItemRecipeId]; + while (totalCount < row.RequiredMaterialsCount) + { + foreach (var materialId in row.RequiredMaterialsId) + { + materialsToUse.TryAdd(materialId, 0); + materialsToUse[materialId] += 1; + totalCount++; + if (totalCount == row.RequiredMaterialsCount) + { + break; + } + } + } + var contextBlockIndex = scheduleRow.StartBlockIndex; Execute( _initialStates, @@ -264,7 +249,7 @@ private void Execute( { PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/Garages/DeliverToOthersGaragesTest.cs b/.Lib9c.Tests/Action/Garages/DeliverToOthersGaragesTest.cs index fb30352301..fcc560bd4c 100644 --- a/.Lib9c.Tests/Action/Garages/DeliverToOthersGaragesTest.cs +++ b/.Lib9c.Tests/Action/Garages/DeliverToOthersGaragesTest.cs @@ -338,7 +338,7 @@ private static (DeliverToOthersGarages action, IAccount nextStates) Execute( BlockIndex = blockIndex, Rehearsal = false, PreviousState = previousState, - Random = random, + RandomSeed = random.Seed, })); } diff --git a/.Lib9c.Tests/Action/Garages/LoadIntoMyGaragesTest.cs b/.Lib9c.Tests/Action/Garages/LoadIntoMyGaragesTest.cs index 016d675fb1..244a09035a 100644 --- a/.Lib9c.Tests/Action/Garages/LoadIntoMyGaragesTest.cs +++ b/.Lib9c.Tests/Action/Garages/LoadIntoMyGaragesTest.cs @@ -260,10 +260,11 @@ public void Execute_Throws_InvalidActionFieldException() public void Execute_Throws_Exception() { // Balance does not enough to pay cost. + var balance = _previousStates.GetBalance(AgentAddr, Currencies.Garage); var previousStatesWithNotEnoughCost = _previousStates.BurnAsset( new ActionContext { Signer = AgentAddr }, AgentAddr, - new FungibleAssetValue(Currencies.Garage, 1, 0)); + balance); Assert.Throws(() => Execute( AgentAddr, 0, @@ -416,7 +417,7 @@ private static (LoadIntoMyGarages action, IAccount nextStates) Execute( BlockIndex = blockIndex, Rehearsal = false, PreviousState = previousState, - Random = random, + RandomSeed = random.Seed, }; return (action, action.Execute(context)); } @@ -435,13 +436,15 @@ private static (Address balanceAddr, FungibleAssetValue value)[] fav.Sign > 0) .Select(fav => { + // CRYSTAL's minorUnit is not actually used in network, avoid cost calculate exception in test. + var value = 1 * fav.Currency; if (Currencies.IsRuneTicker(fav.Currency.Ticker) || Currencies.IsSoulstoneTicker(fav.Currency.Ticker)) { - return (avatarAddr, fav); + return (avatarAddr, value); } - return (agentAddr, fav); + return (agentAddr, value); }) .ToArray(); } diff --git a/.Lib9c.Tests/Action/Garages/UnloadFromMyGaragesTest.cs b/.Lib9c.Tests/Action/Garages/UnloadFromMyGaragesTest.cs index 5aec4395ac..13625c7a9f 100644 --- a/.Lib9c.Tests/Action/Garages/UnloadFromMyGaragesTest.cs +++ b/.Lib9c.Tests/Action/Garages/UnloadFromMyGaragesTest.cs @@ -346,7 +346,7 @@ private static (UnloadFromMyGarages action, IAccount nextStates) Execute( BlockIndex = blockIndex, Rehearsal = false, PreviousState = previousState, - Random = random, + RandomSeed = random.Seed, })); } diff --git a/.Lib9c.Tests/Action/Grinding0Test.cs b/.Lib9c.Tests/Action/Grinding0Test.cs index c6ea61b8b8..a7c6971f4f 100644 --- a/.Lib9c.Tests/Action/Grinding0Test.cs +++ b/.Lib9c.Tests/Action/Grinding0Test.cs @@ -60,7 +60,7 @@ public Grinding0Test() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(_ncgCurrency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState( Addresses.GetSheetAddress(), _tableSheets.CrystalMonsterCollectionMultiplierSheet.Serialize()) @@ -222,7 +222,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = nextState.GetAvatarStateV2(_avatarAddress); @@ -248,7 +248,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/GrindingTest.cs b/.Lib9c.Tests/Action/GrindingTest.cs index 2fd9f199ad..b8adada1e6 100644 --- a/.Lib9c.Tests/Action/GrindingTest.cs +++ b/.Lib9c.Tests/Action/GrindingTest.cs @@ -60,7 +60,7 @@ public GrindingTest() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(_ncgCurrency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState( Addresses.GetSheetAddress(), _tableSheets.CrystalMonsterCollectionMultiplierSheet.Serialize()) @@ -222,7 +222,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = nextState.GetAvatarStateV2(_avatarAddress); @@ -248,7 +248,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlash0Test.cs b/.Lib9c.Tests/Action/HackAndSlash0Test.cs index f06925f415..76da9db97e 100644 --- a/.Lib9c.Tests/Action/HackAndSlash0Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash0Test.cs @@ -58,7 +58,7 @@ public HackAndSlash0Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -117,7 +117,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -162,7 +162,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -188,9 +188,9 @@ public void ExecuteThrowFailedLoadStateException() var exec = Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -219,7 +219,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -250,7 +250,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -282,7 +282,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -322,7 +322,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -353,7 +353,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -399,7 +399,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -431,7 +431,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -476,7 +476,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -522,7 +522,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -559,7 +559,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -590,7 +590,7 @@ public void Rehearsal() _rankingMapAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -622,7 +622,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/HackAndSlash10Test.cs b/.Lib9c.Tests/Action/HackAndSlash10Test.cs index 7a3afabdcf..6e8f371f6b 100644 --- a/.Lib9c.Tests/Action/HackAndSlash10Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash10Test.cs @@ -71,7 +71,7 @@ public HackAndSlash10Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -231,7 +231,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -318,7 +318,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId, int playCount { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -372,7 +372,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -435,7 +435,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -462,7 +462,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -486,7 +486,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -500,7 +500,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -525,7 +525,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -552,7 +552,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -580,7 +580,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -616,7 +616,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -643,7 +643,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -685,7 +685,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -713,7 +713,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -755,7 +755,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -800,7 +800,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -833,7 +833,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -891,7 +891,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1055,7 +1055,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId, int playCo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1127,7 +1127,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlash11Test.cs b/.Lib9c.Tests/Action/HackAndSlash11Test.cs index e1ce4753da..9887b3cf9b 100644 --- a/.Lib9c.Tests/Action/HackAndSlash11Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash11Test.cs @@ -71,7 +71,7 @@ public HackAndSlash11Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -229,7 +229,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -306,7 +306,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId, int playCount { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -359,7 +359,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -421,7 +421,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -444,7 +444,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -458,7 +458,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -482,7 +482,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -508,7 +508,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -535,7 +535,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -570,7 +570,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -596,7 +596,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -637,7 +637,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -664,7 +664,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -705,7 +705,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -749,7 +749,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -781,7 +781,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -838,7 +838,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1001,7 +1001,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId, int playCo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1071,7 +1071,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlash12Test.cs b/.Lib9c.Tests/Action/HackAndSlash12Test.cs index 8488c5edc4..0b81fb66c6 100644 --- a/.Lib9c.Tests/Action/HackAndSlash12Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash12Test.cs @@ -71,7 +71,7 @@ public HackAndSlash12Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -203,7 +203,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -280,7 +280,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId, int playCount { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -343,7 +343,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -405,7 +405,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -428,7 +428,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -442,7 +442,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -466,7 +466,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -492,7 +492,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -519,7 +519,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -554,7 +554,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -580,7 +580,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -621,7 +621,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -648,7 +648,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -689,7 +689,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -733,7 +733,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -765,7 +765,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -822,7 +822,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -892,7 +892,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -997,7 +997,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId, int playCo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1067,7 +1067,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { diff --git a/.Lib9c.Tests/Action/HackAndSlash13Test.cs b/.Lib9c.Tests/Action/HackAndSlash13Test.cs index fea991187b..049c39f8a1 100644 --- a/.Lib9c.Tests/Action/HackAndSlash13Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash13Test.cs @@ -71,7 +71,7 @@ public HackAndSlash13Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -209,7 +209,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -289,7 +289,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -351,7 +351,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -412,7 +412,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -434,7 +434,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { @@ -449,7 +449,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -472,7 +472,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -497,7 +497,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -523,7 +523,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -557,7 +557,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -594,7 +594,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -634,7 +634,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -660,7 +660,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -700,7 +700,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -743,7 +743,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -774,7 +774,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -831,7 +831,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -900,7 +900,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -931,7 +931,7 @@ public void ExecuteThrowActionObsoletedException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1038,7 +1038,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1105,7 +1105,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { diff --git a/.Lib9c.Tests/Action/HackAndSlash15Test.cs b/.Lib9c.Tests/Action/HackAndSlash15Test.cs index 1e3cb5f6d2..83f66fe53f 100644 --- a/.Lib9c.Tests/Action/HackAndSlash15Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash15Test.cs @@ -70,7 +70,7 @@ public HackAndSlash15Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -205,7 +205,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -285,7 +285,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -347,7 +347,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -408,7 +408,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -430,7 +430,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -444,7 +444,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -469,7 +469,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -495,7 +495,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -529,7 +529,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -566,7 +566,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -606,7 +606,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -632,7 +632,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -672,7 +672,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -715,7 +715,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -746,7 +746,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -803,7 +803,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -872,7 +872,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -979,7 +979,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1129,13 +1129,13 @@ public void CheckCrystalRandomSkillState(bool forceClear, bool skillStateExist, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; var nextState = action.Execute(ctx); var simulator = new StageSimulatorV1( - new TestRandom(ctx.Random.Seed), + new TestRandom(ctx.RandomSeed), previousAvatarState, new List(), worldId, diff --git a/.Lib9c.Tests/Action/HackAndSlash16Test.cs b/.Lib9c.Tests/Action/HackAndSlash16Test.cs index c691b8b6d2..ed94d53d1a 100644 --- a/.Lib9c.Tests/Action/HackAndSlash16Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash16Test.cs @@ -71,7 +71,7 @@ public HackAndSlash16Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -206,7 +206,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -286,7 +286,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -348,7 +348,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -409,7 +409,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -431,7 +431,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -445,7 +445,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -470,7 +470,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -496,7 +496,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -530,7 +530,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -567,7 +567,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -607,7 +607,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -633,7 +633,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -673,7 +673,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -716,7 +716,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -751,7 +751,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -814,7 +814,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -883,7 +883,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -918,7 +918,7 @@ public void ExecuteThrowPlayCountIsZeroException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1024,7 +1024,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1174,12 +1174,12 @@ public void CheckCrystalRandomSkillState(bool forceClear, bool skillStateExist, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; var nextState = action.Execute(ctx); - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV2( contextRandom, previousAvatarState, diff --git a/.Lib9c.Tests/Action/HackAndSlash17Test.cs b/.Lib9c.Tests/Action/HackAndSlash17Test.cs index aa44192b5a..5098b6b8ca 100644 --- a/.Lib9c.Tests/Action/HackAndSlash17Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash17Test.cs @@ -71,7 +71,7 @@ public HackAndSlash17Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -206,7 +206,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -286,7 +286,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -348,7 +348,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -409,7 +409,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -431,7 +431,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -445,7 +445,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -470,7 +470,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -496,7 +496,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -530,7 +530,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -567,7 +567,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -607,7 +607,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -633,7 +633,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -673,7 +673,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -716,7 +716,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -751,7 +751,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -814,7 +814,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -883,7 +883,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -918,7 +918,7 @@ public void ExecuteThrowPlayCountIsZeroException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1024,7 +1024,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1174,12 +1174,12 @@ public void CheckCrystalRandomSkillState(bool forceClear, bool skillStateExist, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; var nextState = action.Execute(ctx); - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV2( contextRandom, previousAvatarState, diff --git a/.Lib9c.Tests/Action/HackAndSlash18Test.cs b/.Lib9c.Tests/Action/HackAndSlash18Test.cs index 3e7b2f184b..2c7913f005 100644 --- a/.Lib9c.Tests/Action/HackAndSlash18Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash18Test.cs @@ -77,7 +77,7 @@ public HackAndSlash18Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) @@ -204,7 +204,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -284,7 +284,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -346,7 +346,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -407,7 +407,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -429,7 +429,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -443,7 +443,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -468,7 +468,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -494,7 +494,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -528,7 +528,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -565,7 +565,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -605,7 +605,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -631,7 +631,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -671,7 +671,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -714,7 +714,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -749,7 +749,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -812,7 +812,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -881,7 +881,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -916,7 +916,7 @@ public void ExecuteThrowPlayCountIsZeroException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1009,7 +1009,7 @@ public void Execute_V100291() { PreviousState = initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1118,7 +1118,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1288,7 +1288,7 @@ public void CheckCrystalRandomSkillState( { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1306,7 +1306,7 @@ public void CheckCrystalRandomSkillState( } } - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV2( contextRandom, previousAvatarState, @@ -1408,7 +1408,7 @@ public void CheckUsedApByStaking(int level, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; diff --git a/.Lib9c.Tests/Action/HackAndSlash19Test.cs b/.Lib9c.Tests/Action/HackAndSlash19Test.cs index 09da13a62f..b55ba76a8f 100644 --- a/.Lib9c.Tests/Action/HackAndSlash19Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash19Test.cs @@ -76,7 +76,7 @@ public HackAndSlash19Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) @@ -204,7 +204,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -285,7 +285,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -348,7 +348,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -410,7 +410,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -433,7 +433,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -447,7 +447,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -473,7 +473,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -500,7 +500,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -535,7 +535,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -573,7 +573,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -614,7 +614,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -641,7 +641,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -682,7 +682,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -726,7 +726,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -762,7 +762,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -826,7 +826,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -896,7 +896,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -932,7 +932,7 @@ public void ExecuteThrowPlayCountIsZeroException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1039,7 +1039,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1210,7 +1210,7 @@ public void CheckCrystalRandomSkillState( { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1228,7 +1228,7 @@ public void CheckCrystalRandomSkillState( } } - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV3( contextRandom, previousAvatarState, @@ -1332,7 +1332,7 @@ public void CheckUsedApByStaking(int level, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; diff --git a/.Lib9c.Tests/Action/HackAndSlash20Test.cs b/.Lib9c.Tests/Action/HackAndSlash20Test.cs index 4972ebb9fa..e2d29ceadd 100644 --- a/.Lib9c.Tests/Action/HackAndSlash20Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash20Test.cs @@ -77,7 +77,7 @@ public HackAndSlash20Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) @@ -205,7 +205,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -286,7 +286,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -349,7 +349,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -411,7 +411,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -434,7 +434,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -448,7 +448,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -474,7 +474,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -501,7 +501,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -536,7 +536,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -574,7 +574,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -615,7 +615,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -642,7 +642,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -683,7 +683,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -727,7 +727,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -763,7 +763,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -827,7 +827,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -897,7 +897,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -932,7 +932,7 @@ public void ExecuteThrowInvalidItemCountException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -969,7 +969,7 @@ public void ExecuteThrowPlayCountIsZeroException(int totalPlayCount, int apStone { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -996,7 +996,7 @@ public void ExecuteThrowUsageLimitExceedException() { PreviousState = state, Signer = _avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1023,7 +1023,7 @@ public void ExecuteThrowNotEnoughMaterialException() { PreviousState = state, Signer = _avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1129,7 +1129,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1300,7 +1300,7 @@ public void CheckCrystalRandomSkillState( { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1318,7 +1318,7 @@ public void CheckCrystalRandomSkillState( } } - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV3( contextRandom, previousAvatarState, @@ -1422,7 +1422,7 @@ public void CheckUsedApByStaking(int level, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1502,7 +1502,7 @@ public void CheckUsingApStoneWithStaking(int level, int apStoneCount, int totalR { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1554,7 +1554,7 @@ public void ExecuteThrowInvalidRepeatPlayException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1649,7 +1649,7 @@ public void ExecuteTwoRepetitions() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -1673,7 +1673,7 @@ public void ExecuteTwoRepetitions() { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -1766,7 +1766,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new HackAndSlash20 @@ -1788,7 +1788,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/HackAndSlash21Test.cs b/.Lib9c.Tests/Action/HackAndSlash21Test.cs index 11ef66ea06..a742a65683 100644 --- a/.Lib9c.Tests/Action/HackAndSlash21Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash21Test.cs @@ -78,7 +78,7 @@ public HackAndSlash21Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) @@ -206,7 +206,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -287,7 +287,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -350,7 +350,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -412,7 +412,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -435,7 +435,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) AvatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -449,7 +449,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -475,7 +475,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -502,7 +502,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -537,7 +537,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -575,7 +575,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -616,7 +616,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -643,7 +643,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -684,7 +684,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -728,7 +728,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -764,7 +764,7 @@ public void ExecuteThrowNotEnoughActionPointException(int ap, int playCount = 1) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -828,7 +828,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -898,7 +898,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -933,7 +933,7 @@ public void ExecuteThrowInvalidItemCountException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -970,7 +970,7 @@ public void ExecuteThrowPlayCountIsZeroException(int totalPlayCount, int apStone { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -997,7 +997,7 @@ public void ExecuteThrowUsageLimitExceedException() { PreviousState = state, Signer = _avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1024,7 +1024,7 @@ public void ExecuteThrowNotEnoughMaterialException() { PreviousState = state, Signer = _avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1130,7 +1130,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1301,7 +1301,7 @@ public void CheckCrystalRandomSkillState( { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1319,7 +1319,7 @@ public void CheckCrystalRandomSkillState( } } - var contextRandom = new TestRandom(ctx.Random.Seed); + var contextRandom = new TestRandom(ctx.RandomSeed); var simulator = new StageSimulatorV3( contextRandom, previousAvatarState, @@ -1423,7 +1423,7 @@ public void CheckUsedApByStaking(int level, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1503,7 +1503,7 @@ public void CheckUsingApStoneWithStaking(int level, int apStoneCount, int totalR { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; @@ -1555,7 +1555,7 @@ public void ExecuteThrowInvalidRepeatPlayException() { PreviousState = state, Signer = avatarState.agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -1650,7 +1650,7 @@ public void ExecuteTwoRepetitions() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -1674,7 +1674,7 @@ public void ExecuteTwoRepetitions() { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -1767,7 +1767,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new HackAndSlash21 @@ -1789,7 +1789,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } diff --git a/.Lib9c.Tests/Action/HackAndSlash2Test.cs b/.Lib9c.Tests/Action/HackAndSlash2Test.cs index 76403b8284..b3a70bd2cf 100644 --- a/.Lib9c.Tests/Action/HackAndSlash2Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash2Test.cs @@ -60,7 +60,7 @@ public HackAndSlash2Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -119,7 +119,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -171,7 +171,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -197,9 +197,9 @@ public void ExecuteThrowFailedLoadStateException() var exec = Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -228,7 +228,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -259,7 +259,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -291,7 +291,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -331,7 +331,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -362,7 +362,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -408,7 +408,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -440,7 +440,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -485,7 +485,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -531,7 +531,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -568,7 +568,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -599,7 +599,7 @@ public void Rehearsal() _rankingMapAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -631,7 +631,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/HackAndSlash3Test.cs b/.Lib9c.Tests/Action/HackAndSlash3Test.cs index 7764b4aca0..a9087c4b87 100644 --- a/.Lib9c.Tests/Action/HackAndSlash3Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash3Test.cs @@ -57,7 +57,7 @@ public HackAndSlash3Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -133,7 +133,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/HackAndSlash4Test.cs b/.Lib9c.Tests/Action/HackAndSlash4Test.cs index b8f6c0d26d..b38c565904 100644 --- a/.Lib9c.Tests/Action/HackAndSlash4Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash4Test.cs @@ -60,7 +60,7 @@ public HackAndSlash4Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -181,7 +181,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -260,7 +260,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -323,7 +323,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -352,7 +352,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -378,9 +378,9 @@ public void ExecuteThrowFailedLoadStateException() var exec = Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -409,7 +409,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -440,7 +440,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -472,7 +472,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -512,7 +512,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -543,7 +543,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -589,7 +589,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -621,7 +621,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -666,7 +666,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -712,7 +712,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -749,7 +749,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -776,7 +776,7 @@ public void Execute_Throw_ActionObsoletedException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = ActionObsoleteConfig.V100080ObsoleteIndex + 100000, })); } diff --git a/.Lib9c.Tests/Action/HackAndSlash5Test.cs b/.Lib9c.Tests/Action/HackAndSlash5Test.cs index 908c7d83f7..c17382bf6b 100644 --- a/.Lib9c.Tests/Action/HackAndSlash5Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash5Test.cs @@ -60,7 +60,7 @@ public HackAndSlash5Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -181,7 +181,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -261,7 +261,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -324,7 +324,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -353,7 +353,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -379,9 +379,9 @@ public void ExecuteThrowFailedLoadStateException() var exec = Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -410,7 +410,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -441,7 +441,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -473,7 +473,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -513,7 +513,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -544,7 +544,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -590,7 +590,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -622,7 +622,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -667,7 +667,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -713,7 +713,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -750,7 +750,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); diff --git a/.Lib9c.Tests/Action/HackAndSlash6Test.cs b/.Lib9c.Tests/Action/HackAndSlash6Test.cs index 3cfa904112..fc05276a55 100644 --- a/.Lib9c.Tests/Action/HackAndSlash6Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash6Test.cs @@ -62,7 +62,7 @@ public HackAndSlash6Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) @@ -197,7 +197,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -277,7 +277,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -340,7 +340,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -369,7 +369,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -395,7 +395,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) Assert.Null(action.Result); - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -409,7 +409,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -438,7 +438,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -469,7 +469,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -501,7 +501,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -541,7 +541,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -572,7 +572,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -618,7 +618,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -650,7 +650,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -695,7 +695,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -741,7 +741,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -778,7 +778,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); Assert.Null(action.Result); @@ -812,7 +812,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlash7Test.cs b/.Lib9c.Tests/Action/HackAndSlash7Test.cs index d47f0786ea..cf656faddc 100644 --- a/.Lib9c.Tests/Action/HackAndSlash7Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash7Test.cs @@ -71,7 +71,7 @@ public HackAndSlash7Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -223,7 +223,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool contains, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -320,7 +320,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); // Second Execute @@ -328,7 +328,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -382,7 +382,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -445,7 +445,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -472,7 +472,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -496,7 +496,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) WeeklyArenaAddress = _weeklyArenaState.address, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -510,7 +510,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -535,7 +535,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -562,7 +562,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -590,7 +590,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -626,7 +626,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -653,7 +653,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -695,7 +695,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -723,7 +723,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -765,7 +765,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -810,7 +810,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -843,7 +843,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -875,7 +875,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlash8Test.cs b/.Lib9c.Tests/Action/HackAndSlash8Test.cs index fb640da05a..38ff5fcae7 100644 --- a/.Lib9c.Tests/Action/HackAndSlash8Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash8Test.cs @@ -71,7 +71,7 @@ public HackAndSlash8Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -229,7 +229,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -317,7 +317,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); // Second Execute @@ -325,7 +325,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -378,7 +378,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -440,7 +440,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -466,7 +466,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -489,7 +489,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -503,7 +503,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -527,7 +527,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -553,7 +553,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -580,7 +580,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -615,7 +615,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -641,7 +641,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -682,7 +682,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -709,7 +709,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -750,7 +750,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -794,7 +794,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -826,7 +826,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -856,7 +856,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlash9Test.cs b/.Lib9c.Tests/Action/HackAndSlash9Test.cs index 63b7e34595..4081e2deea 100644 --- a/.Lib9c.Tests/Action/HackAndSlash9Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlash9Test.cs @@ -71,7 +71,7 @@ public HackAndSlash9Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -231,7 +231,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -322,7 +322,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId, int playCount { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -341,7 +341,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId, int playCount { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -395,7 +395,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -458,7 +458,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -485,7 +485,7 @@ public void ExecuteThrowInvalidRankingMapAddress() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }) ); @@ -509,7 +509,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -523,7 +523,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -548,7 +548,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -575,7 +575,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -603,7 +603,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -639,7 +639,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -666,7 +666,7 @@ public void ExecuteThrowInvalidWorldException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -708,7 +708,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -736,7 +736,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -778,7 +778,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -823,7 +823,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -856,7 +856,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -914,7 +914,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1078,7 +1078,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId, int playCo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1150,7 +1150,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/HackAndSlashRandomBuffTest.cs b/.Lib9c.Tests/Action/HackAndSlashRandomBuffTest.cs index fa7e048944..54a0ef4f1e 100644 --- a/.Lib9c.Tests/Action/HackAndSlashRandomBuffTest.cs +++ b/.Lib9c.Tests/Action/HackAndSlashRandomBuffTest.cs @@ -71,7 +71,7 @@ public HackAndSlashRandomBuffTest() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -148,7 +148,7 @@ public void Execute(int stageId, bool advancedGacha, int balance, int gatheredSt { PreviousState = states, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); Assert.Equal( @@ -163,7 +163,7 @@ public void Execute(int stageId, bool advancedGacha, int balance, int gatheredSt { PreviousState = states, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); }); } @@ -218,7 +218,7 @@ public void ContainMinimumBuffRank(bool advancedGacha, CrystalRandomBuffSheet.Ro { PreviousState = states, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var newGachaState = new CrystalRandomSkillState( gachaStateAddress, diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep1Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep1Test.cs index 0f3fab46f7..cb28809fd5 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep1Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep1Test.cs @@ -66,7 +66,7 @@ public HackAndSlashSweep1Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -167,7 +167,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -196,7 +196,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -210,7 +210,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -230,7 +230,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -250,7 +250,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -269,7 +269,7 @@ public void Execute_InvalidStageException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -323,7 +323,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -377,7 +377,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -449,7 +449,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -518,7 +518,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep2Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep2Test.cs index 96a5e32a79..af978bf53e 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep2Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep2Test.cs @@ -66,7 +66,7 @@ public HackAndSlashSweep2Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -167,7 +167,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -196,7 +196,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -210,7 +210,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -230,7 +230,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -250,7 +250,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -269,7 +269,7 @@ public void Execute_StageClearedException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -307,7 +307,7 @@ public void Execute_InvalidStageException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -361,7 +361,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -415,7 +415,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -487,7 +487,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -556,7 +556,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep3Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep3Test.cs index da9fd395f1..bbe1b7133d 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep3Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep3Test.cs @@ -67,7 +67,7 @@ public HackAndSlashSweep3Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -195,7 +195,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -226,7 +226,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -240,7 +240,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -260,7 +260,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -280,7 +280,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -299,7 +299,7 @@ public void Execute_StageClearedException() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -337,7 +337,7 @@ public void Execute_InvalidStageException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -391,7 +391,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -445,7 +445,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -523,7 +523,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -598,7 +598,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -673,7 +673,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -747,7 +747,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -768,7 +768,7 @@ public void Execute_ActionObsoletedException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep4Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep4Test.cs index eda619825a..8412b036df 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep4Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep4Test.cs @@ -67,7 +67,7 @@ public HackAndSlashSweep4Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -215,7 +215,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -246,7 +246,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -260,7 +260,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -280,7 +280,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -301,7 +301,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -341,7 +341,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -395,7 +395,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -449,7 +449,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -527,7 +527,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -602,7 +602,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -677,7 +677,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -751,7 +751,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -772,7 +772,7 @@ public void Execute_ActionObsoletedException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep5Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep5Test.cs index f9245c6789..59d059e36f 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep5Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep5Test.cs @@ -68,7 +68,7 @@ public HackAndSlashSweep5Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -218,7 +218,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -249,7 +249,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -263,7 +263,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -288,7 +288,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -314,7 +314,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -358,7 +358,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -423,7 +423,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward, int stageI { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -477,7 +477,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -555,7 +555,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -630,7 +630,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -705,7 +705,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -779,7 +779,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep6Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep6Test.cs index 4070498347..6811c3bf41 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep6Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep6Test.cs @@ -74,7 +74,7 @@ public HackAndSlashSweep6Test() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -225,7 +225,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -256,7 +256,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -270,7 +270,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -295,7 +295,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -321,7 +321,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -365,7 +365,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -430,7 +430,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward, int stageI { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -484,7 +484,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -562,7 +562,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -637,7 +637,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -712,7 +712,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -786,7 +786,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -858,7 +858,7 @@ public void ExecuteWithStake(int stakingLevel) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var nextAvatar = nextState.GetAvatarStateV2(_avatarAddress); Assert.Equal(expectedLevel, nextAvatar.level); diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep7Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep7Test.cs index dc04acbfa5..d82af3ce09 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep7Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep7Test.cs @@ -74,7 +74,7 @@ public HackAndSlashSweep7Test() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -228,7 +228,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -259,7 +259,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -273,7 +273,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -298,7 +298,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -324,7 +324,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -368,7 +368,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -433,7 +433,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward, int stageI { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -487,7 +487,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -565,7 +565,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -640,7 +640,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -715,7 +715,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -789,7 +789,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -861,7 +861,7 @@ public void ExecuteWithStake(int stakingLevel) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var nextAvatar = nextState.GetAvatarStateV2(_avatarAddress); Assert.Equal(expectedLevel, nextAvatar.level); diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep8Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep8Test.cs index 337a3cfba1..666bfc329a 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep8Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep8Test.cs @@ -74,7 +74,7 @@ public HackAndSlashSweep8Test() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -229,7 +229,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -261,7 +261,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -275,7 +275,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -301,7 +301,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -328,7 +328,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -373,7 +373,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -439,7 +439,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward, int stageI { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -494,7 +494,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -573,7 +573,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -649,7 +649,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -725,7 +725,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -800,7 +800,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -873,7 +873,7 @@ public void ExecuteWithStake(int stakingLevel) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var nextAvatar = nextState.GetAvatarStateV2(_avatarAddress); Assert.Equal(expectedLevel, nextAvatar.level); diff --git a/.Lib9c.Tests/Action/HackAndSlashSweep9Test.cs b/.Lib9c.Tests/Action/HackAndSlashSweep9Test.cs index e767e36ff5..2c8e3efae0 100644 --- a/.Lib9c.Tests/Action/HackAndSlashSweep9Test.cs +++ b/.Lib9c.Tests/Action/HackAndSlashSweep9Test.cs @@ -75,7 +75,7 @@ public HackAndSlashSweep9Test() #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -230,7 +230,7 @@ public void Execute(int apStoneCount, int worldId, int stageId, bool challenge, { PreviousState = state, Signer = _agentAddress, - Random = _random, + RandomSeed = _random.Seed, }); var nextAvatarState = state.GetAvatarStateV2(_avatarAddress); @@ -262,7 +262,7 @@ public void Execute_FailedLoadStateException(bool backward) stageId = 1, }; - var state = backward ? new MockStateDelta() : _initialState; + var state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -276,7 +276,7 @@ public void Execute_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -302,7 +302,7 @@ public void Execute_SheetRowNotFoundException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -329,7 +329,7 @@ public void Execute_SheetRowColumnException(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -374,7 +374,7 @@ public void Execute_InvalidStageException(int clearedWorldId, int clearedStageId { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -440,7 +440,7 @@ public void Execute_InvalidWorldException(int worldId, bool backward, int stageI { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -495,7 +495,7 @@ public void Execute_UsageLimitExceedException(int apStoneCount, bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -574,7 +574,7 @@ public void Execute_NotEnoughMaterialException(int useApStoneCount, int holdingA { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -650,7 +650,7 @@ public void Execute_NotEnoughActionPointException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -726,7 +726,7 @@ public void Execute_PlayCountIsZeroException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -801,7 +801,7 @@ public void Execute_NotEnoughCombatPointException(int worldId, int stageId, bool { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } @@ -874,7 +874,7 @@ public void ExecuteWithStake(int stakingLevel) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var nextAvatar = nextState.GetAvatarStateV2(_avatarAddress); Assert.Equal(expectedLevel, nextAvatar.level); @@ -950,7 +950,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new HackAndSlashSweep9 @@ -973,7 +973,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } else diff --git a/.Lib9c.Tests/Action/HackAndSlashTest14.cs b/.Lib9c.Tests/Action/HackAndSlashTest14.cs index b3b63fb91e..af79f5af6b 100644 --- a/.Lib9c.Tests/Action/HackAndSlashTest14.cs +++ b/.Lib9c.Tests/Action/HackAndSlashTest14.cs @@ -70,7 +70,7 @@ public HackAndSlashTest14() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.SerializeV2()) .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -196,7 +196,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, bool backward, bo { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -276,7 +276,7 @@ public void Execute_With_UpdateQuestList(int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); avatarState = state.GetAvatarStateV2(avatarState.address); @@ -338,7 +338,7 @@ public void MaxLevelTest() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -399,7 +399,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); @@ -421,7 +421,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) avatarAddress = _avatarAddress, }; - IAccount state = backward ? new MockStateDelta() : _initialState; + IAccount state = backward ? new Account(MockState.Empty) : _initialState; if (!backward) { state = _initialState @@ -435,7 +435,7 @@ public void Execute_Throw_FailedLoadStateException(bool backward) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -460,7 +460,7 @@ public void ExecuteThrowSheetRowColumnException(int stageId) { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -486,7 +486,7 @@ public void ExecuteThrowSheetRowNotFoundExceptionByStage() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -520,7 +520,7 @@ public void ExecuteThrowFailedAddWorldException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -557,7 +557,7 @@ public void Execute_Throw_InvalidWorldException(int worldId, int stageId, bool u { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -597,7 +597,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -623,7 +623,7 @@ public void ExecuteThrowInvalidStageExceptionUnlockedWorld() { PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -663,7 +663,7 @@ public void ExecuteThrowInvalidEquipmentException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -706,7 +706,7 @@ public void ExecuteThrowEquipmentSlotUnlockException(ItemSubType itemSubType) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -737,7 +737,7 @@ public void ExecuteThrowNotEnoughActionPointException() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); SerializeException(exec); @@ -794,7 +794,7 @@ public void ExecuteWithoutPlayCount() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -863,7 +863,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); SerializeException(exec); @@ -970,7 +970,7 @@ public void CheckRewardItems(bool backward, int worldId, int stageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -1120,13 +1120,13 @@ public void CheckCrystalRandomSkillState(bool forceClear, bool skillStateExist, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }; var nextState = action.Execute(ctx); var simulator = new StageSimulatorV1( - new TestRandom(ctx.Random.Seed), + new TestRandom(ctx.RandomSeed), previousAvatarState, new List(), worldId, diff --git a/.Lib9c.Tests/Action/InitializeStatesTest.cs b/.Lib9c.Tests/Action/InitializeStatesTest.cs index fd0b9f74bb..bc0aa0d383 100644 --- a/.Lib9c.Tests/Action/InitializeStatesTest.cs +++ b/.Lib9c.Tests/Action/InitializeStatesTest.cs @@ -4,6 +4,7 @@ namespace Lib9c.Tests.Action using System.Collections.Immutable; using System.Linq; using Bencodex.Types; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -61,7 +62,7 @@ public void Execute() BlockIndex = 0, Signer = minterKey.ToAddress(), Miner = default, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }); var addresses = new List
() @@ -128,7 +129,7 @@ public void ExecuteWithAuthorizedMinersState() BlockIndex = 0, Miner = default, Signer = minterKey.ToAddress(), - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }); var fetchedState = new AuthorizedMinersState( @@ -177,7 +178,7 @@ public void ExecuteWithActivateAdminKey() BlockIndex = 0, Miner = default, Signer = minterKey.ToAddress(), - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }); var fetchedState = new ActivatedAccountsState( @@ -229,7 +230,7 @@ public void ExecuteWithCredits() BlockIndex = 0, Miner = default, Signer = minterKey.ToAddress(), - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }); var fetchedState = new CreditsState( @@ -275,7 +276,7 @@ public void ExecuteWithoutAdminState() BlockIndex = 0, Miner = default, Signer = minterKey.ToAddress(), - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }); var fetchedState = new ActivatedAccountsState( diff --git a/.Lib9c.Tests/Action/ItemEnhancement0Test.cs b/.Lib9c.Tests/Action/ItemEnhancement0Test.cs index 4eaa5fe8c5..0a984a61df 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement0Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement0Test.cs @@ -57,7 +57,7 @@ public ItemEnhancement0Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -109,7 +109,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -136,7 +136,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) @@ -504,7 +504,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()); var nextState = action.Execute(new ActionContext() diff --git a/.Lib9c.Tests/Action/ItemEnhancement10Test.cs b/.Lib9c.Tests/Action/ItemEnhancement10Test.cs index d5b0744ee6..fa4858986d 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement10Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement10Test.cs @@ -62,7 +62,7 @@ public ItemEnhancement10Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -148,7 +148,7 @@ public void Execute(int level, int expectedGold, bool backward) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -226,7 +226,7 @@ public void Rehearsal() ItemEnhancement10.GetFeeStoreAddress(), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -284,7 +284,7 @@ public void Execute_ActionObsoletedException() PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/ItemEnhancement11Test.cs b/.Lib9c.Tests/Action/ItemEnhancement11Test.cs index 031defc699..d6625969cf 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement11Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement11Test.cs @@ -5,6 +5,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; @@ -32,6 +33,8 @@ public class ItemEnhancement11Test public ItemEnhancement11Test() { var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EnhancementCostSheetV2)] = + EquipmentItemSheetFixture.LegacyEnhancementCostSheetV2; _tableSheets = new TableSheets(sheets); var privateKey = new PrivateKey(); _agentAddress = privateKey.PublicKey.ToAddress(); @@ -57,7 +60,7 @@ public ItemEnhancement11Test() var slotAddress = _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(slotAddress, new CombinationSlotState(slotAddress, 0).Serialize()) @@ -183,7 +186,7 @@ bool stake PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement12Test.cs b/.Lib9c.Tests/Action/ItemEnhancement12Test.cs index fd22ba6635..82f0bbc2d3 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement12Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement12Test.cs @@ -5,6 +5,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; @@ -14,6 +15,7 @@ namespace Lib9c.Tests.Action using Nekoyume.Model.Item; using Nekoyume.Model.Mail; using Nekoyume.Model.State; + using Nekoyume.TableData; using Xunit; using static SerializeKeys; @@ -29,6 +31,9 @@ public class ItemEnhancement12Test public ItemEnhancement12Test() { var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(EquipmentItemSheet)] = EquipmentItemSheetFixture.LegacyEquipmentItemSheet; + sheets[nameof(EnhancementCostSheetV3)] = + EquipmentItemSheetFixture.LegacyEnhancementCostSheetV3; _tableSheets = new TableSheets(sheets); var privateKey = new PrivateKey(); _agentAddress = privateKey.PublicKey.ToAddress(); @@ -58,7 +63,7 @@ public ItemEnhancement12Test() )); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(slotAddress, new CombinationSlotState(slotAddress, 0).Serialize()) @@ -276,7 +281,7 @@ public void Execute( PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = new TestRandom(), + RandomSeed = 0, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement13Test.cs b/.Lib9c.Tests/Action/ItemEnhancement13Test.cs index a998650cd9..2219c4939a 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement13Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement13Test.cs @@ -5,6 +5,10 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; + using Lib9c.Tests.Fixtures.TableCSV.Cost; + using Lib9c.Tests.Fixtures.TableCSV.Item; + using Lib9c.Tests.Util; using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; @@ -28,8 +32,24 @@ public class ItemEnhancement13Test public ItemEnhancement13Test() { - var sheets = TableSheetsImporter.ImportSheets(); + _initialState = new Account(MockState.Empty); + Dictionary sheets; + (_initialState, sheets) = InitializeUtil.InitializeTableSheets( + _initialState, + sheetsOverride: new Dictionary + { + { + "EnhancementCostSheetV3", + EnhancementCostSheetFixtures.V3 + }, + }); _tableSheets = new TableSheets(sheets); + foreach (var (key, value) in sheets) + { + _initialState = + _initialState.SetState(Addresses.TableSheet.Derive(key), value.Serialize()); + } + var privateKey = new PrivateKey(); _agentAddress = privateKey.PublicKey.ToAddress(); var agentState = new AgentState(_agentAddress); @@ -58,7 +78,7 @@ public ItemEnhancement13Test() )); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = _initialState .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(slotAddress, new CombinationSlotState(slotAddress, 0).Serialize()) @@ -79,99 +99,92 @@ public ItemEnhancement13Test() gold.Currency * 3_000_000, _initialState.GetBalance(_agentAddress, gold.Currency) ); - - foreach (var (key, value) in sheets) - { - _initialState = - _initialState.SetState(Addresses.TableSheet.Derive(key), value.Serialize()); - } } [Theory] // from 0 to 0 using one level 0 material - [InlineData(0, false, 0, 0, false, 1)] - [InlineData(0, false, 0, 0, true, 1)] - [InlineData(0, true, 0, 0, false, 1)] - [InlineData(0, true, 0, 0, true, 1)] + [InlineData(0, false, 0, false, 1)] + [InlineData(0, false, 0, true, 1)] + [InlineData(0, true, 0, false, 1)] + [InlineData(0, true, 0, true, 1)] // from 0 to 1 using two level 0 material - [InlineData(0, false, 1, 0, false, 3)] - [InlineData(0, false, 1, 0, true, 3)] - [InlineData(0, true, 1, 0, false, 3)] - [InlineData(0, true, 1, 0, true, 3)] + [InlineData(0, false, 0, false, 3)] + [InlineData(0, false, 0, true, 3)] + [InlineData(0, true, 0, false, 3)] + [InlineData(0, true, 0, true, 3)] // // Duplicated > from 0 to 0 - [InlineData(0, false, 0, 0, false, 3, true)] - [InlineData(0, false, 0, 0, true, 3, true)] - [InlineData(0, true, 0, 0, false, 3, true)] - [InlineData(0, true, 0, 0, true, 3, true)] + [InlineData(0, false, 0, false, 3, true)] + [InlineData(0, false, 0, true, 3, true)] + [InlineData(0, true, 0, false, 3, true)] + [InlineData(0, true, 0, true, 3, true)] // from 0 to N using multiple level 0 materials - [InlineData(0, false, 2, 0, false, 7)] - [InlineData(0, false, 4, 0, false, 31)] - [InlineData(0, false, 2, 0, true, 7)] - [InlineData(0, false, 4, 0, true, 31)] - [InlineData(0, true, 2, 0, false, 7)] - [InlineData(0, true, 4, 0, false, 31)] - [InlineData(0, true, 2, 0, true, 7)] - [InlineData(0, true, 4, 0, true, 31)] + [InlineData(0, false, 0, false, 7)] + [InlineData(0, false, 0, false, 31)] + [InlineData(0, false, 0, true, 7)] + [InlineData(0, false, 0, true, 31)] + [InlineData(0, true, 0, false, 7)] + [InlineData(0, true, 0, false, 31)] + [InlineData(0, true, 0, true, 7)] + [InlineData(0, true, 0, true, 31)] // // Duplicated > from 0 to 0 - [InlineData(0, false, 0, 0, false, 7, true)] - [InlineData(0, false, 0, 0, false, 31, true)] - [InlineData(0, false, 0, 0, true, 7, true)] - [InlineData(0, false, 0, 0, true, 31, true)] - [InlineData(0, true, 0, 0, false, 7, true)] - [InlineData(0, true, 0, 0, false, 31, true)] - [InlineData(0, true, 0, 0, true, 7, true)] - [InlineData(0, true, 0, 0, true, 31, true)] + [InlineData(0, false, 0, false, 7, true)] + [InlineData(0, false, 0, false, 31, true)] + [InlineData(0, false, 0, true, 7, true)] + [InlineData(0, false, 0, true, 31, true)] + [InlineData(0, true, 0, false, 7, true)] + [InlineData(0, true, 0, false, 31, true)] + [InlineData(0, true, 0, true, 7, true)] + [InlineData(0, true, 0, true, 31, true)] // from K to K with material(s). Check requiredBlock == 0 - [InlineData(10, false, 10, 0, false, 1)] - [InlineData(10, false, 10, 0, true, 1)] - [InlineData(10, true, 10, 0, false, 1)] - [InlineData(10, true, 10, 0, true, 1)] + [InlineData(10, false, 0, false, 1)] + [InlineData(10, false, 0, true, 1)] + [InlineData(10, true, 0, false, 1)] + [InlineData(10, true, 0, true, 1)] // from K to N using one level X material - [InlineData(5, false, 6, 6, false, 1)] - [InlineData(5, false, 6, 6, true, 1)] - [InlineData(5, true, 6, 6, false, 1)] - [InlineData(5, true, 6, 6, true, 1)] + [InlineData(5, false, 6, false, 1)] + [InlineData(5, false, 6, true, 1)] + [InlineData(5, true, 6, false, 1)] + [InlineData(5, true, 6, true, 1)] // from K to N using multiple materials - [InlineData(5, false, 7, 4, false, 6)] - [InlineData(5, false, 9, 7, false, 5)] - [InlineData(5, false, 7, 4, true, 6)] - [InlineData(5, false, 9, 7, true, 5)] - [InlineData(5, true, 7, 4, false, 6)] - [InlineData(5, true, 9, 7, false, 5)] - [InlineData(5, true, 7, 4, true, 6)] - [InlineData(5, true, 9, 7, true, 5)] + [InlineData(5, false, 4, false, 6)] + [InlineData(5, false, 7, false, 5)] + [InlineData(5, false, 4, true, 6)] + [InlineData(5, false, 7, true, 5)] + [InlineData(5, true, 4, false, 6)] + [InlineData(5, true, 7, false, 5)] + [InlineData(5, true, 4, true, 6)] + [InlineData(5, true, 7, true, 5)] // // Duplicated: from K to K - [InlineData(5, true, 5, 4, true, 6, true)] - [InlineData(5, true, 7, 7, true, 5, true)] - [InlineData(5, true, 5, 4, false, 6, true)] - [InlineData(5, true, 7, 7, false, 5, true)] - [InlineData(5, false, 5, 4, true, 6, true)] - [InlineData(5, false, 7, 7, true, 5, true)] - [InlineData(5, false, 5, 4, false, 6, true)] - [InlineData(5, false, 7, 7, false, 5, true)] + [InlineData(5, true, 4, true, 6, true)] + [InlineData(5, true, 7, true, 5, true)] + [InlineData(5, true, 4, false, 6, true)] + [InlineData(5, true, 7, false, 5, true)] + [InlineData(5, false, 4, true, 6, true)] + [InlineData(5, false, 7, true, 5, true)] + [InlineData(5, false, 4, false, 6, true)] + [InlineData(5, false, 7, false, 5, true)] // from 20 to 21 (just to reach level 21 exp) - [InlineData(20, false, 21, 20, false, 1)] - [InlineData(20, false, 21, 20, true, 1)] - [InlineData(20, true, 21, 20, false, 1)] - [InlineData(20, true, 21, 20, true, 1)] + [InlineData(20, false, 20, false, 1)] + [InlineData(20, false, 20, true, 1)] + [InlineData(20, true, 20, false, 1)] + [InlineData(20, true, 20, true, 1)] // from 20 to 21 (over level 21) - [InlineData(20, false, 21, 20, false, 2)] - [InlineData(20, false, 21, 20, true, 2)] - [InlineData(20, true, 21, 20, false, 2)] - [InlineData(20, true, 21, 20, true, 2)] + [InlineData(20, false, 20, false, 2)] + [InlineData(20, false, 20, true, 2)] + [InlineData(20, true, 20, false, 2)] + [InlineData(20, true, 20, true, 2)] // from 21 to 21 (no level up) - [InlineData(21, false, 21, 1, false, 1)] - [InlineData(21, false, 21, 21, false, 1)] - [InlineData(21, false, 21, 1, true, 1)] - [InlineData(21, false, 21, 21, true, 1)] - [InlineData(21, true, 21, 1, false, 1)] - [InlineData(21, true, 21, 21, false, 1)] - [InlineData(21, true, 21, 1, true, 1)] - [InlineData(21, true, 21, 21, true, 1)] + [InlineData(21, false, 1, false, 1)] + [InlineData(21, false, 21, false, 1)] + [InlineData(21, false, 1, true, 1)] + [InlineData(21, false, 21, true, 1)] + [InlineData(21, true, 1, false, 1)] + [InlineData(21, true, 21, false, 1)] + [InlineData(21, true, 1, true, 1)] + [InlineData(21, true, 21, true, 1)] public void Execute( int startLevel, bool oldStart, - int expectedLevel, int materialLevel, bool oldMaterial, int materialCount, @@ -199,17 +212,9 @@ public void Execute( _avatarState.inventory.AddItem(equipment, count: 1); - var expectedTargetRow = _tableSheets.EnhancementCostSheetV3.OrderedList.FirstOrDefault( - r => - r.Grade == equipment.Grade && r.ItemSubType == equipment.ItemSubType && - r.Level == expectedLevel); var startRow = _tableSheets.EnhancementCostSheetV3.OrderedList.FirstOrDefault(r => r.Grade == equipment.Grade && r.ItemSubType == equipment.ItemSubType && r.Level == startLevel); - var expectedCost = (expectedTargetRow?.Cost ?? 0) - (startRow?.Cost ?? 0); - var expectedBlockIndex = - (expectedTargetRow?.RequiredBlockIndex ?? 0) - (startRow?.RequiredBlockIndex ?? 0); - var expectedExpIncrement = 0L; var materialIds = new List(); var duplicatedGuid = Guid.NewGuid(); @@ -305,14 +310,20 @@ public void Execute( PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = new TestRandom(), + RandomSeed = 0, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); var resultEquipment = (Equipment)slotState.Result.itemUsable; + var level = resultEquipment.level; var nextAvatarState = nextState.GetAvatarState(_avatarAddress); + var expectedTargetRow = _tableSheets.EnhancementCostSheetV3.OrderedList.FirstOrDefault( + r => r.Grade == equipment.Grade && r.ItemSubType == equipment.ItemSubType && + r.Level == level); + var expectedCost = (expectedTargetRow?.Cost ?? 0) - (startRow?.Cost ?? 0); + var expectedBlockIndex = + (expectedTargetRow?.RequiredBlockIndex ?? 0) - (startRow?.RequiredBlockIndex ?? 0); Assert.Equal(default, resultEquipment.ItemId); - Assert.Equal(expectedLevel, resultEquipment.level); Assert.Equal(startExp + expectedExpIncrement, resultEquipment.Exp); Assert.Equal( (3_000_000 - expectedCost) * _currency, @@ -332,14 +343,14 @@ public void Execute( var stateDict = (Dictionary)nextState.GetState(slotAddress); var slot = new CombinationSlotState(stateDict); var slotResult = (ItemEnhancement13.ResultModel)slot.Result; - if (startLevel != expectedLevel) + if (startLevel != level) { var baseMinAtk = (decimal)preItemUsable.StatsMap.BaseATK; var baseMaxAtk = (decimal)preItemUsable.StatsMap.BaseATK; var extraMinAtk = (decimal)preItemUsable.StatsMap.AdditionalATK; var extraMaxAtk = (decimal)preItemUsable.StatsMap.AdditionalATK; - for (var i = startLevel + 1; i <= expectedLevel; i++) + for (var i = startLevel + 1; i <= level; i++) { var currentRow = _tableSheets.EnhancementCostSheetV3.OrderedList .First(x => diff --git a/.Lib9c.Tests/Action/ItemEnhancement2Test.cs b/.Lib9c.Tests/Action/ItemEnhancement2Test.cs index 955117608e..6fb8fd0268 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement2Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement2Test.cs @@ -56,7 +56,7 @@ public ItemEnhancement2Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -108,7 +108,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -135,7 +135,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, BlockIndex = 0, }) @@ -469,7 +469,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()); var nextState = action.Execute(new ActionContext() diff --git a/.Lib9c.Tests/Action/ItemEnhancement3Test.cs b/.Lib9c.Tests/Action/ItemEnhancement3Test.cs index 2733f83da0..8ff2f93d8c 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement3Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement3Test.cs @@ -56,7 +56,7 @@ public ItemEnhancement3Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -124,7 +124,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement4Test.cs b/.Lib9c.Tests/Action/ItemEnhancement4Test.cs index 5bfe74eda6..a631a40996 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement4Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement4Test.cs @@ -57,7 +57,7 @@ public ItemEnhancement4Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -125,7 +125,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement5Test.cs b/.Lib9c.Tests/Action/ItemEnhancement5Test.cs index e00a9ccf71..31ce91424d 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement5Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement5Test.cs @@ -57,7 +57,7 @@ public ItemEnhancement5Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -125,7 +125,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement6Test.cs b/.Lib9c.Tests/Action/ItemEnhancement6Test.cs index 7869aa7c03..5e1960079c 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement6Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement6Test.cs @@ -57,7 +57,7 @@ public ItemEnhancement6Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -125,7 +125,7 @@ public void Execute(int level, int expectedLevel, int expectedGold) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); diff --git a/.Lib9c.Tests/Action/ItemEnhancement7Test.cs b/.Lib9c.Tests/Action/ItemEnhancement7Test.cs index f234b5f683..54c3426fca 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement7Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement7Test.cs @@ -59,7 +59,7 @@ public ItemEnhancement7Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -140,7 +140,7 @@ public void Execute(int level, int expectedLevel, int expectedGold, bool backwar PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -195,7 +195,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/ItemEnhancement8Test.cs b/.Lib9c.Tests/Action/ItemEnhancement8Test.cs index 60f677c70a..f46c0044b2 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement8Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement8Test.cs @@ -59,7 +59,7 @@ public ItemEnhancement8Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -140,7 +140,7 @@ public void Execute(int level, int expectedLevel, int expectedGold, bool backwar PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -195,7 +195,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/ItemEnhancement9Test.cs b/.Lib9c.Tests/Action/ItemEnhancement9Test.cs index f177c56035..70c29fdd2c 100644 --- a/.Lib9c.Tests/Action/ItemEnhancement9Test.cs +++ b/.Lib9c.Tests/Action/ItemEnhancement9Test.cs @@ -60,7 +60,7 @@ public ItemEnhancement9Test() _avatarAddress.Derive(string.Format(CultureInfo.InvariantCulture, CombinationSlotState.DeriveFormat, 0)); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(_slotAddress, new CombinationSlotState(_slotAddress, 0).Serialize()) @@ -142,7 +142,7 @@ public void Execute(int level, int expectedGold, bool backward) PreviousState = _initialState, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); var slotState = nextState.GetCombinationSlotState(_avatarAddress, 0); @@ -220,7 +220,7 @@ public void Rehearsal() Addresses.Blacksmith, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/JoinArena1Test.cs b/.Lib9c.Tests/Action/JoinArena1Test.cs index bcad3265b0..f197955dd5 100644 --- a/.Lib9c.Tests/Action/JoinArena1Test.cs +++ b/.Lib9c.Tests/Action/JoinArena1Test.cs @@ -45,7 +45,7 @@ public JoinArena1Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _signer = new PrivateKey().ToAddress(); _avatarAddress = _signer.Derive("avatar"); @@ -220,7 +220,7 @@ public void Execute(long blockIndex, int championshipId, int round, string balan { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -297,7 +297,7 @@ public void Execute_SheetRowNotFoundException(int championshipId) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -322,7 +322,7 @@ public void Execute_RoundNotFoundByIdsException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -350,7 +350,7 @@ public void Execute_NotEnoughMedalException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 100, })); } @@ -377,7 +377,7 @@ public void Execute_NotEnoughFungibleAssetValueException(int round, long blockIn { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -402,7 +402,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = 1, }); @@ -411,7 +411,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -443,7 +443,7 @@ public void Execute_ArenaScoreAlreadyContainsException2() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -475,7 +475,7 @@ public void Execute_ArenaInformationAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -496,7 +496,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _signer2, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/JoinArena2Test.cs b/.Lib9c.Tests/Action/JoinArena2Test.cs index 3bed1c1363..8d622408ac 100644 --- a/.Lib9c.Tests/Action/JoinArena2Test.cs +++ b/.Lib9c.Tests/Action/JoinArena2Test.cs @@ -45,7 +45,7 @@ public JoinArena2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _signer = new PrivateKey().ToAddress(); _avatarAddress = _signer.Derive("avatar"); @@ -221,7 +221,7 @@ public void Execute(long blockIndex, int championshipId, int round, string balan { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -299,7 +299,7 @@ public void Execute_SheetRowNotFoundException(int championshipId) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -325,7 +325,7 @@ public void Execute_RoundNotFoundByIdsException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -354,7 +354,7 @@ public void Execute_NotEnoughMedalException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 100, })); } @@ -382,7 +382,7 @@ public void Execute_NotEnoughFungibleAssetValueException(int round, long blockIn { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -408,7 +408,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = 1, }); @@ -417,7 +417,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -450,7 +450,7 @@ public void Execute_ArenaScoreAlreadyContainsException2() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -483,7 +483,7 @@ public void Execute_ArenaInformationAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -505,7 +505,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _signer2, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/JoinArena3Test.cs b/.Lib9c.Tests/Action/JoinArena3Test.cs index 64b1c2035c..b0b21fde97 100644 --- a/.Lib9c.Tests/Action/JoinArena3Test.cs +++ b/.Lib9c.Tests/Action/JoinArena3Test.cs @@ -46,7 +46,7 @@ public JoinArena3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); _signer = new PrivateKey().ToAddress(); _avatarAddress = _signer.Derive("avatar"); @@ -224,7 +224,7 @@ public void Execute(long blockIndex, int championshipId, int round, string balan { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); @@ -302,7 +302,7 @@ public void Execute_SheetRowNotFoundException(int championshipId) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -328,7 +328,7 @@ public void Execute_RoundNotFoundByIdsException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -357,7 +357,7 @@ public void Execute_NotEnoughMedalException(int round) { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 100, })); } @@ -385,7 +385,7 @@ public void Execute_NotEnoughFungibleAssetValueException(int round, long blockIn { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -411,7 +411,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = _random, + RandomSeed = _random.Seed, Rehearsal = false, BlockIndex = 1, }); @@ -420,7 +420,7 @@ public void Execute_ArenaScoreAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 2, })); } @@ -453,7 +453,7 @@ public void Execute_ArenaScoreAlreadyContainsException2() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -486,7 +486,7 @@ public void Execute_ArenaInformationAlreadyContainsException() { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = 1, })); } @@ -508,7 +508,7 @@ public void Execute_NotEnoughClearedStageLevelException() { PreviousState = _state, Signer = _signer2, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -545,7 +545,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new JoinArena3() @@ -566,7 +566,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _signer, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/MarketValidationTest.cs b/.Lib9c.Tests/Action/MarketValidationTest.cs index e66d1ee252..d40f6ea7a4 100644 --- a/.Lib9c.Tests/Action/MarketValidationTest.cs +++ b/.Lib9c.Tests/Action/MarketValidationTest.cs @@ -23,7 +23,7 @@ public class MarketValidationTest public MarketValidationTest() { - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, new GoldCurrencyState(Gold).Serialize()); } @@ -197,7 +197,7 @@ public void Validate_RegisterInfo(params RegisterInfosMember[] validateMembers) { Signer = AgentAddress, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, }; foreach (var validateMember in validateMembers) { @@ -231,7 +231,7 @@ public void Validate_ProductInfo(params ProductInfosMember[] validateMembers) { Signer = AgentAddress, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, }; foreach (var validateMember in validateMembers) { diff --git a/.Lib9c.Tests/Action/MigrateMonsterCollectionTest.cs b/.Lib9c.Tests/Action/MigrateMonsterCollectionTest.cs index 5eab7065e9..c3582d9d31 100644 --- a/.Lib9c.Tests/Action/MigrateMonsterCollectionTest.cs +++ b/.Lib9c.Tests/Action/MigrateMonsterCollectionTest.cs @@ -31,7 +31,7 @@ public MigrateMonsterCollectionTest(ITestOutputHelper outputHelper) _signer = default; _avatarAddress = _signer.Derive("avatar"); - _state = new MockStateDelta(); + _state = new Account(MockState.Empty); Dictionary sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(sheets); var rankingMapAddress = new PrivateKey().ToAddress(); @@ -82,7 +82,7 @@ public void Execute_ThrowsIfAlreadyStakeStateExists() PreviousState = states, Signer = _signer, BlockIndex = 0, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -103,7 +103,7 @@ public void Execute_After_V100220ObsoleteIndex() PreviousState = states, Signer = _signer, BlockIndex = ActionObsoleteConfig.V100220ObsoleteIndex + 1, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.True(states.TryGetAvatarStateV2( @@ -139,7 +139,7 @@ public void Execute(int collectionLevel, long claimBlockIndex, long receivedBloc PreviousState = states, Signer = _signer, BlockIndex = claimBlockIndex, - Random = new TestRandom(), + RandomSeed = 0, }); Assert.True(states.TryGetStakeState(_signer, out StakeState stakeState)); diff --git a/.Lib9c.Tests/Action/MigrationActivatedAccountsStateTest.cs b/.Lib9c.Tests/Action/MigrationActivatedAccountsStateTest.cs index ebbe28a737..05f6049d74 100644 --- a/.Lib9c.Tests/Action/MigrationActivatedAccountsStateTest.cs +++ b/.Lib9c.Tests/Action/MigrationActivatedAccountsStateTest.cs @@ -16,7 +16,7 @@ public void Execute() { var nonce = new byte[] { 0x00, 0x01, 0x02, 0x03 }; var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize()) .SetState(ActivatedAccountsState.Address, new ActivatedAccountsState().AddAccount(default).Serialize())); diff --git a/.Lib9c.Tests/Action/MigrationAvatarStateTest.cs b/.Lib9c.Tests/Action/MigrationAvatarStateTest.cs index c8ed5973b9..981c107c91 100644 --- a/.Lib9c.Tests/Action/MigrationAvatarStateTest.cs +++ b/.Lib9c.Tests/Action/MigrationAvatarStateTest.cs @@ -33,7 +33,7 @@ public void Execute() ); var nonce = new byte[] { 0x00, 0x01, 0x02, 0x03 }; var admin = new Address("8d9f76aF8Dc5A812aCeA15d8bf56E2F790F47fd7"); - var state = new MockStateDelta( + var state = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(admin, 100).Serialize()) .SetState(avatarAddress, avatarState.SerializeV2())); diff --git a/.Lib9c.Tests/Action/MigrationLegacyShopTest.cs b/.Lib9c.Tests/Action/MigrationLegacyShopTest.cs index 8f21ff82d7..495cf24aa2 100644 --- a/.Lib9c.Tests/Action/MigrationLegacyShopTest.cs +++ b/.Lib9c.Tests/Action/MigrationLegacyShopTest.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System; using System.Collections.Generic; using System.Linq; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -28,7 +29,7 @@ public void Execute(bool isAdmin, bool expire, Type exc) { var adminAddress = new Address("399bddF9F7B6d902ea27037B907B2486C9910730"); var adminState = new AdminState(adminAddress, 100); - var states = new MockStateDelta().SetState(Addresses.Admin, adminState.Serialize()); + var states = new Account(MockState.Empty).SetState(Addresses.Admin, adminState.Serialize()); var signer = isAdmin ? adminAddress : default; var blockIndex = expire ? 200 : 100; diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle0Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle0Test.cs index e982d4771e..dfd998d6be 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle0Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle0Test.cs @@ -56,7 +56,7 @@ public MimisbrunnrBattle0Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -168,7 +168,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int clearStageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -258,7 +258,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -283,7 +283,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -409,7 +409,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -494,7 +494,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -585,7 +585,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); var spawnPlayer = action.Result.FirstOrDefault(e => e is SpawnPlayer); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle10Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle10Test.cs index ab7b9d263f..f4f5c22988 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle10Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle10Test.cs @@ -54,7 +54,7 @@ public MimisbrunnrBattle10Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -158,7 +158,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -232,7 +232,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -256,7 +256,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -347,7 +347,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -429,7 +429,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -513,7 +513,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -602,7 +602,7 @@ public void ExecuteThrowHighLevelItemRequirementException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); } } @@ -710,7 +710,7 @@ public void Execute_v100291() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -820,7 +820,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle11Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle11Test.cs index ede38096e1..82b62d5d05 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle11Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle11Test.cs @@ -52,7 +52,7 @@ public MimisbrunnrBattle11Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -157,7 +157,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -232,7 +232,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -257,7 +257,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -351,7 +351,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -434,7 +434,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -520,7 +520,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -610,7 +610,7 @@ public void ExecuteThrowHighLevelItemRequirementException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); } } @@ -716,7 +716,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle12Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle12Test.cs index 37b34145bc..55c0a813d6 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle12Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle12Test.cs @@ -58,7 +58,7 @@ public MimisbrunnrBattle12Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -164,7 +164,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -239,7 +239,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -264,7 +264,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -358,7 +358,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -441,7 +441,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -527,7 +527,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -617,7 +617,7 @@ public void ExecuteThrowHighLevelItemRequirementException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); } } @@ -723,7 +723,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -830,7 +830,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new MimisbrunnrBattle12 @@ -853,7 +853,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, })); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle13Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle13Test.cs index 2f1c5fdad6..100cc6a8dd 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle13Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle13Test.cs @@ -59,7 +59,7 @@ public MimisbrunnrBattle13Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -165,7 +165,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, }); @@ -240,7 +240,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -265,7 +265,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -359,7 +359,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -442,7 +442,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -528,7 +528,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -618,7 +618,7 @@ public void ExecuteThrowHighLevelItemRequirementException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); } } @@ -724,7 +724,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -831,7 +831,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var action = new MimisbrunnrBattle @@ -854,7 +854,7 @@ public void ExecuteDuplicatedException(int slotIndex, int runeId, int slotIndex2 { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = ActionObsoleteConfig.V100301ExecutedBlockIndex, })); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle2Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle2Test.cs index eb0608c4dd..38cafdaf2d 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle2Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle2Test.cs @@ -56,7 +56,7 @@ public MimisbrunnrBattle2Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -168,7 +168,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int clearStageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -258,7 +258,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -283,7 +283,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -409,7 +409,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -494,7 +494,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -585,7 +585,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); var spawnPlayer = action.Result.FirstOrDefault(e => e is SpawnPlayer); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle3Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle3Test.cs index 3754738186..b136b3f99b 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle3Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle3Test.cs @@ -56,7 +56,7 @@ public MimisbrunnrBattle3Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -168,7 +168,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int clearStageId) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -259,7 +259,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -284,7 +284,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -410,7 +410,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -495,7 +495,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -586,7 +586,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); var spawnPlayer = action.Result.FirstOrDefault(e => e is SpawnPlayer); diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle4Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle4Test.cs index 67f20b67c5..6e0f8333ba 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle4Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle4Test.cs @@ -57,7 +57,7 @@ public MimisbrunnrBattle4Test() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -181,7 +181,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int clearStageId, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -268,7 +268,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -293,7 +293,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -412,7 +412,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -495,7 +495,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -582,7 +582,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -611,7 +611,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle5Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle5Test.cs index 1eec79bf97..813f264458 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle5Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle5Test.cs @@ -54,7 +54,7 @@ public MimisbrunnrBattle5Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_rankingMapAddress, new RankingMapState(_rankingMapAddress).Serialize()); @@ -176,7 +176,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int clearStageId, { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -261,7 +261,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -285,7 +285,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -400,7 +400,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -482,7 +482,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -567,7 +567,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -595,7 +595,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle6Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle6Test.cs index 072eb080e7..6888047b80 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle6Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle6Test.cs @@ -55,7 +55,7 @@ public MimisbrunnrBattle6Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -186,7 +186,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -272,7 +272,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -297,7 +297,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -416,7 +416,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -499,7 +499,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -585,7 +585,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -705,7 +705,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -754,7 +754,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle7Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle7Test.cs index 236a357bf8..1ca49ae271 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle7Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle7Test.cs @@ -55,7 +55,7 @@ public MimisbrunnrBattle7Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -186,7 +186,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -272,7 +272,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -297,7 +297,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -416,7 +416,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -499,7 +499,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -585,7 +585,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -705,7 +705,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -754,7 +754,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle8Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle8Test.cs index ce324a0557..1f4b48fb8d 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle8Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle8Test.cs @@ -52,7 +52,7 @@ public MimisbrunnrBattle8Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -181,7 +181,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -256,7 +256,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -280,7 +280,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -371,7 +371,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -453,7 +453,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext() { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -537,7 +537,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -656,7 +656,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -703,7 +703,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/MimisbrunnrBattle9Test.cs b/.Lib9c.Tests/Action/MimisbrunnrBattle9Test.cs index c60cd203ef..7dd4502673 100644 --- a/.Lib9c.Tests/Action/MimisbrunnrBattle9Test.cs +++ b/.Lib9c.Tests/Action/MimisbrunnrBattle9Test.cs @@ -53,7 +53,7 @@ public MimisbrunnrBattle9Test() }; agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(_avatarAddress.Derive(LegacyInventoryKey), avatarState.inventory.Serialize()) @@ -157,7 +157,7 @@ public void Execute(int avatarLevel, int worldId, int stageId, int playCount, in { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -231,7 +231,7 @@ public void ExecuteThrowInvalidStageException() { PreviousState = previousState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -255,7 +255,7 @@ public void ExecuteThrowFailedLoadStateException() { action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, }); }); @@ -346,7 +346,7 @@ public void ExecuteThrowNotEnoughActionPoint() { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); }); } @@ -428,7 +428,7 @@ public void ExecuteThrowInvalidWorld(int avatarLevel, int worldId, int stageId, { action.Execute(new ActionContext { - PreviousState = state, Signer = _agentAddress, Random = new TestRandom(), Rehearsal = false, + PreviousState = state, Signer = _agentAddress, RandomSeed = 0, Rehearsal = false, }); }); } @@ -512,7 +512,7 @@ public void ExecuteEquippableItemValidation() PreviousState = nextState, Signer = _agentAddress, Rehearsal = false, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -601,7 +601,7 @@ public void ExecuteThrowHighLevelItemRequirementException(int avatarLevel) { PreviousState = state, Signer = avatarState.agentAddress, - Random = random, + RandomSeed = random.Seed, })); } } @@ -706,7 +706,7 @@ public void CheckRewardItems(bool backward, int stageIndex, int playCount) { PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = 1, }); @@ -754,7 +754,7 @@ public void Rehearsal() _avatarAddress.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { diff --git a/.Lib9c.Tests/Action/MockDelta.cs b/.Lib9c.Tests/Action/MockDelta.cs deleted file mode 100644 index 9d83d3f3ab..0000000000 --- a/.Lib9c.Tests/Action/MockDelta.cs +++ /dev/null @@ -1,72 +0,0 @@ -namespace Lib9c.Tests.Action -{ -#nullable enable - - using System.Collections.Immutable; - using System.Linq; - using System.Numerics; - using Bencodex.Types; - using Libplanet.Action.State; - using Libplanet.Crypto; - using Libplanet.Types.Assets; - using Libplanet.Types.Consensus; - - /// - /// Almost a replica of https://github.com/planetarium/libplanet/blob/main/Libplanet/State/AccountDelta.cs - /// except this has its constructors exposed as public for testing. - /// - public class MockDelta : IAccountDelta - { - public MockDelta() - { - States = ImmutableDictionary.Empty; - Fungibles = ImmutableDictionary<(Address, Currency), BigInteger>.Empty; - TotalSupplies = ImmutableDictionary.Empty; - ValidatorSet = null; - } - - public MockDelta( - IImmutableDictionary statesDelta, - IImmutableDictionary<(Address, Currency), BigInteger> fungiblesDelta, - IImmutableDictionary totalSuppliesDelta, - ValidatorSet? validatorSetDelta) - { - States = statesDelta; - Fungibles = fungiblesDelta; - TotalSupplies = totalSuppliesDelta; - ValidatorSet = validatorSetDelta; - } - - /// - public IImmutableSet
UpdatedAddresses => - StateUpdatedAddresses.Union(FungibleUpdatedAddresses); - - /// - public IImmutableSet
StateUpdatedAddresses => - States.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary States { get; } - - /// - public IImmutableSet
FungibleUpdatedAddresses => - Fungibles.Keys.Select(pair => pair.Item1).ToImmutableHashSet(); - - /// - public IImmutableSet<(Address, Currency)> UpdatedFungibleAssets => - Fungibles.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary<(Address, Currency), BigInteger> Fungibles { get; } - - /// - public IImmutableSet UpdatedTotalSupplyCurrencies => - TotalSupplies.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary TotalSupplies { get; } - - /// - public ValidatorSet? ValidatorSet { get; } - } -} diff --git a/.Lib9c.Tests/Action/MockState.cs b/.Lib9c.Tests/Action/MockState.cs index 5a1ded150d..f8df30ca1a 100644 --- a/.Lib9c.Tests/Action/MockState.cs +++ b/.Lib9c.Tests/Action/MockState.cs @@ -80,7 +80,7 @@ private MockState( public static MockState Empty => _empty; - public ITrie Trie => throw new NotSupportedException(); + public ITrie Trie => new MerkleTrie(new MemoryKeyValueStore()); public IImmutableDictionary States => _states; diff --git a/.Lib9c.Tests/Action/MockStateDelta.cs b/.Lib9c.Tests/Action/MockStateDelta.cs deleted file mode 100644 index 18a0486a25..0000000000 --- a/.Lib9c.Tests/Action/MockStateDelta.cs +++ /dev/null @@ -1,401 +0,0 @@ -namespace Lib9c.Tests.Action -{ -#nullable enable - - using System; - using System.Collections.Generic; - using System.Collections.Immutable; - using System.Diagnostics.Contracts; - using System.Linq; - using System.Numerics; - using Bencodex.Types; - using Libplanet.Action; - using Libplanet.Action.State; - using Libplanet.Crypto; - using Libplanet.Store.Trie; - using Libplanet.Types.Assets; - using Libplanet.Types.Consensus; - - /// - /// A rough replica of https://github.com/planetarium/libplanet/blob/main/Libplanet/State/AccountStateDelta.cs - /// except this has its constructors exposed as public for testing. - /// - [Pure] - public class MockStateDelta : IAccount - { - private readonly IAccountState _baseState; - - public MockStateDelta() - : this(MockState.Empty) - { - } - - public MockStateDelta(IAccountState baseState) - : this(baseState, new MockDelta()) - { - } - - private MockStateDelta(IAccountState baseState, IAccountDelta delta) - { - _baseState = baseState; - Delta = delta; - TotalUpdatedFungibles = ImmutableDictionary<(Address, Currency), BigInteger>.Empty; - } - - public ITrie Trie => throw new NotSupportedException(); - - /// - public IAccountDelta Delta { get; private set; } - - /// - public IImmutableSet<(Address, Currency)> TotalUpdatedFungibleAssets => - TotalUpdatedFungibles.Keys.ToImmutableHashSet(); - - public IImmutableDictionary<(Address, Currency), BigInteger> TotalUpdatedFungibles - { get; private set; } - - /// - [Pure] - public IValue? GetState(Address address) - { - IValue? state = GetStates(new[] { address })[0]; - return state; - } - - /// - [Pure] - public IReadOnlyList GetStates(IReadOnlyList
addresses) - { - int length = addresses.Count; - IValue?[] values = new IValue?[length]; - var notFoundIndices = new List(length); - for (int i = 0; i < length; i++) - { - Address address = addresses[i]; - if (Delta.States.TryGetValue(address, out IValue? updatedValue)) - { - values[i] = updatedValue; - } - else - { - notFoundIndices.Add(i); - } - } - - if (notFoundIndices.Count > 0) - { - IReadOnlyList restValues = _baseState.GetStates( - notFoundIndices.Select(index => addresses[index]).ToArray()); - foreach ((var v, var i) in notFoundIndices.Select((v, i) => (v, i))) - { - values[v] = restValues[i]; - } - } - - return values; - } - - /// - [Pure] - public IAccount SetState(Address address, IValue state) => - UpdateStates(Delta.States.SetItem(address, state)); - - /// - [Pure] - public FungibleAssetValue GetBalance(Address address, Currency currency) => - GetBalance(address, currency, Delta.Fungibles); - - /// - [Pure] - public FungibleAssetValue GetTotalSupply(Currency currency) - { - if (!currency.TotalSupplyTrackable) - { - throw new TotalSupplyNotTrackableException( - $"The total supply value of the currency {currency} is not trackable " + - "because it is a legacy untracked currency which might have been " + - "established before the introduction of total supply tracking support.", - currency); - } - - // Return dirty state if it exists. - if (Delta.TotalSupplies.TryGetValue(currency, out BigInteger totalSupplyValue)) - { - return FungibleAssetValue.FromRawValue(currency, totalSupplyValue); - } - - return _baseState.GetTotalSupply(currency); - } - - /// - [Pure] - public ValidatorSet GetValidatorSet() => - Delta.ValidatorSet ?? _baseState.GetValidatorSet(); - - /// - [Pure] - public IAccount MintAsset( - IActionContext context, Address recipient, FungibleAssetValue value) - { - if (value.Sign <= 0) - { - throw new ArgumentOutOfRangeException( - nameof(value), - "The value to mint has to be greater than zero." - ); - } - - Currency currency = value.Currency; - if (!currency.AllowsToMint(context.Signer)) - { - throw new CurrencyPermissionException( - $"The account {context.Signer} has no permission to mint currency {currency}.", - context.Signer, - currency - ); - } - - FungibleAssetValue balance = GetBalance(recipient, currency); - (Address, Currency) assetKey = (recipient, currency); - BigInteger rawBalance = (balance + value).RawValue; - - if (currency.TotalSupplyTrackable) - { - var currentTotalSupply = GetTotalSupply(currency); - if (currency.MaximumSupply < currentTotalSupply + value) - { - var msg = $"The amount {value} attempted to be minted added to the current" - + $" total supply of {currentTotalSupply} exceeds the" - + $" maximum allowed supply of {currency.MaximumSupply}."; - throw new SupplyOverflowException(msg, value); - } - - return UpdateFungibleAssets( - Delta.Fungibles.SetItem(assetKey, rawBalance), - TotalUpdatedFungibles.SetItem(assetKey, rawBalance), - Delta.TotalSupplies.SetItem(currency, (currentTotalSupply + value).RawValue) - ); - } - - return UpdateFungibleAssets( - Delta.Fungibles.SetItem(assetKey, rawBalance), - TotalUpdatedFungibles.SetItem(assetKey, rawBalance) - ); - } - - /// - [Pure] - public IAccount TransferAsset( - IActionContext context, - Address sender, - Address recipient, - FungibleAssetValue value, - bool allowNegativeBalance = false) => context.BlockProtocolVersion > 0 - ? TransferAssetV1(sender, recipient, value, allowNegativeBalance) - : TransferAssetV0(sender, recipient, value, allowNegativeBalance); - - /// - [Pure] - public IAccount BurnAsset( - IActionContext context, Address owner, FungibleAssetValue value) - { - string msg; - - if (value.Sign <= 0) - { - throw new ArgumentOutOfRangeException( - nameof(value), - "The value to burn has to be greater than zero." - ); - } - - Currency currency = value.Currency; - if (!currency.AllowsToMint(context.Signer)) - { - msg = $"The account {context.Signer} has no permission to burn assets of " + - $"the currency {currency}."; - throw new CurrencyPermissionException(msg, context.Signer, currency); - } - - FungibleAssetValue balance = GetBalance(owner, currency); - - if (balance < value) - { - msg = $"The account {owner}'s balance of {currency} is insufficient to burn: " + - $"{balance} < {value}."; - throw new InsufficientBalanceException(msg, owner, balance); - } - - (Address, Currency) assetKey = (owner, currency); - BigInteger rawBalance = (balance - value).RawValue; - if (currency.TotalSupplyTrackable) - { - return UpdateFungibleAssets( - Delta.Fungibles.SetItem(assetKey, rawBalance), - TotalUpdatedFungibles.SetItem(assetKey, rawBalance), - Delta.TotalSupplies.SetItem( - currency, - (GetTotalSupply(currency) - value).RawValue) - ); - } - - return UpdateFungibleAssets( - Delta.Fungibles.SetItem(assetKey, rawBalance), - TotalUpdatedFungibles.SetItem(assetKey, rawBalance) - ); - } - - /// - [Pure] - public IAccount SetValidator(Validator validator) - { - return UpdateValidatorSet(GetValidatorSet().Update(validator)); - } - - [Pure] - private FungibleAssetValue GetBalance( - Address address, - Currency currency, - IImmutableDictionary<(Address, Currency), BigInteger> balances) => - balances.TryGetValue((address, currency), out BigInteger balance) - ? FungibleAssetValue.FromRawValue(currency, balance) - : _baseState.GetBalance(address, currency); - - [Pure] - private MockStateDelta UpdateStates( - IImmutableDictionary updatedStates) => - new MockStateDelta( - _baseState, - new MockDelta( - updatedStates, - Delta.Fungibles, - Delta.TotalSupplies, - Delta.ValidatorSet)) - { - TotalUpdatedFungibles = TotalUpdatedFungibles, - }; - - [Pure] - private MockStateDelta UpdateFungibleAssets( - IImmutableDictionary<(Address, Currency), BigInteger> updatedFungibleAssets, - IImmutableDictionary<(Address, Currency), BigInteger> totalUpdatedFungibles - ) => - UpdateFungibleAssets( - updatedFungibleAssets, - totalUpdatedFungibles, - Delta.TotalSupplies); - - [Pure] - private MockStateDelta UpdateFungibleAssets( - IImmutableDictionary<(Address, Currency), BigInteger> updatedFungibleAssets, - IImmutableDictionary<(Address, Currency), BigInteger> totalUpdatedFungibles, - IImmutableDictionary updatedTotalSupply - ) => - new MockStateDelta( - _baseState, - new MockDelta( - Delta.States, - updatedFungibleAssets, - updatedTotalSupply, - Delta.ValidatorSet)) - { - TotalUpdatedFungibles = totalUpdatedFungibles, - }; - - [Pure] - private MockStateDelta UpdateValidatorSet( - ValidatorSet updatedValidatorSet) => - new MockStateDelta( - _baseState, - new MockDelta( - Delta.States, - Delta.Fungibles, - Delta.TotalSupplies, - updatedValidatorSet)) - { - TotalUpdatedFungibles = TotalUpdatedFungibles, - }; - - [Pure] - private IAccount TransferAssetV0( - Address sender, - Address recipient, - FungibleAssetValue value, - bool allowNegativeBalance = false) - { - if (value.Sign <= 0) - { - throw new ArgumentOutOfRangeException( - nameof(value), - "The value to transfer has to be greater than zero." - ); - } - - Currency currency = value.Currency; - FungibleAssetValue senderBalance = GetBalance(sender, currency); - FungibleAssetValue recipientBalance = GetBalance(recipient, currency); - - if (!allowNegativeBalance && senderBalance < value) - { - var msg = $"The account {sender}'s balance of {currency} is insufficient to " + - $"transfer: {senderBalance} < {value}."; - throw new InsufficientBalanceException(msg, sender, senderBalance); - } - - return UpdateFungibleAssets( - Delta.Fungibles - .SetItem((sender, currency), (senderBalance - value).RawValue) - .SetItem((recipient, currency), (recipientBalance + value).RawValue), - TotalUpdatedFungibles - .SetItem((sender, currency), (senderBalance - value).RawValue) - .SetItem((recipient, currency), (recipientBalance + value).RawValue) - ); - } - - [Pure] - private IAccount TransferAssetV1( - Address sender, - Address recipient, - FungibleAssetValue value, - bool allowNegativeBalance = false) - { - if (value.Sign <= 0) - { - throw new ArgumentOutOfRangeException( - nameof(value), - "The value to transfer has to be greater than zero." - ); - } - - Currency currency = value.Currency; - FungibleAssetValue senderBalance = GetBalance(sender, currency); - - if (!allowNegativeBalance && senderBalance < value) - { - var msg = $"The account {sender}'s balance of {currency} is insufficient to " + - $"transfer: {senderBalance} < {value}."; - throw new InsufficientBalanceException(msg, sender, senderBalance); - } - - (Address, Currency) senderAssetKey = (sender, currency); - BigInteger senderRawBalance = (senderBalance - value).RawValue; - - IImmutableDictionary<(Address, Currency), BigInteger> updatedFungibleAssets = - Delta.Fungibles.SetItem(senderAssetKey, senderRawBalance); - IImmutableDictionary<(Address, Currency), BigInteger> totalUpdatedFungibles = - TotalUpdatedFungibles.SetItem(senderAssetKey, senderRawBalance); - - FungibleAssetValue recipientBalance = GetBalance( - recipient, - currency, - updatedFungibleAssets); - (Address, Currency) recipientAssetKey = (recipient, currency); - BigInteger recipientRawBalance = (recipientBalance + value).RawValue; - - return UpdateFungibleAssets( - updatedFungibleAssets.SetItem(recipientAssetKey, recipientRawBalance), - totalUpdatedFungibles.SetItem(recipientAssetKey, recipientRawBalance) - ); - } - } -} diff --git a/.Lib9c.Tests/Action/MonsterCollect0Test.cs b/.Lib9c.Tests/Action/MonsterCollect0Test.cs index 8685284da8..f342f3ac91 100644 --- a/.Lib9c.Tests/Action/MonsterCollect0Test.cs +++ b/.Lib9c.Tests/Action/MonsterCollect0Test.cs @@ -28,7 +28,7 @@ public MonsterCollect0Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()); foreach ((string key, string value) in sheets) { @@ -111,7 +111,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, BlockIndex = 1, })); @@ -238,7 +238,7 @@ public void Rehearsal() }; IAccount nextState = action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, Rehearsal = true, }); diff --git a/.Lib9c.Tests/Action/MonsterCollect2Test.cs b/.Lib9c.Tests/Action/MonsterCollect2Test.cs index ecc6e1a89c..cd752b522f 100644 --- a/.Lib9c.Tests/Action/MonsterCollect2Test.cs +++ b/.Lib9c.Tests/Action/MonsterCollect2Test.cs @@ -29,7 +29,7 @@ public MonsterCollect2Test() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()); foreach ((string key, string value) in sheets) { @@ -133,7 +133,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, BlockIndex = 1, })); @@ -164,7 +164,7 @@ public void Rehearsal() }; IAccount nextState = action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, Rehearsal = true, }); diff --git a/.Lib9c.Tests/Action/MonsterCollectTest.cs b/.Lib9c.Tests/Action/MonsterCollectTest.cs index 01dd5efa0c..be48e0f9a6 100644 --- a/.Lib9c.Tests/Action/MonsterCollectTest.cs +++ b/.Lib9c.Tests/Action/MonsterCollectTest.cs @@ -29,7 +29,7 @@ public MonsterCollectTest() var currency = Currency.Legacy("NCG", 2, null); #pragma warning restore CS0618 var goldCurrencyState = new GoldCurrencyState(currency); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GoldCurrency, goldCurrencyState.Serialize()); foreach ((string key, string value) in sheets) { @@ -134,7 +134,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, BlockIndex = 1, })); @@ -185,7 +185,7 @@ public void Rehearsal() }; IAccount nextState = action.Execute(new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _signer, Rehearsal = true, }); diff --git a/.Lib9c.Tests/Action/PatchTableSheetTest.cs b/.Lib9c.Tests/Action/PatchTableSheetTest.cs index 847e6dad0c..4da2f7e2b5 100644 --- a/.Lib9c.Tests/Action/PatchTableSheetTest.cs +++ b/.Lib9c.Tests/Action/PatchTableSheetTest.cs @@ -25,7 +25,7 @@ public PatchTableSheetTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -89,26 +89,26 @@ public void Execute_GameConfigSheet() var state = new GameConfigState(); state.Set(sheet); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterFullCostumeSlot, state.RequireCharacterLevel_FullCostumeSlot); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterHairCostumeSlot, state.RequireCharacterLevel_HairCostumeSlot); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEarCostumeSlot, state.RequireCharacterLevel_EarCostumeSlot); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEyeCostumeSlot, state.RequireCharacterLevel_EyeCostumeSlot); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterTailCostumeSlot, state.RequireCharacterLevel_TailCostumeSlot); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterTitleSlot, state.RequireCharacterLevel_TitleSlot); - - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotWeapon, state.RequireCharacterLevel_EquipmentSlotWeapon); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotArmor, state.RequireCharacterLevel_EquipmentSlotArmor); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotBelt, state.RequireCharacterLevel_EquipmentSlotBelt); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotNecklace, state.RequireCharacterLevel_EquipmentSlotNecklace); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotRing1, state.RequireCharacterLevel_EquipmentSlotRing1); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotRing2, state.RequireCharacterLevel_EquipmentSlotRing2); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterEquipmentSlotAura, state.RequireCharacterLevel_EquipmentSlotAura); - - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterConsumableSlot1, state.RequireCharacterLevel_ConsumableSlot1); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterConsumableSlot2, state.RequireCharacterLevel_ConsumableSlot2); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterConsumableSlot3, state.RequireCharacterLevel_ConsumableSlot3); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterConsumableSlot4, state.RequireCharacterLevel_ConsumableSlot4); - Assert.Equal(GameConfig.RequireCharacterLevel.CharacterConsumableSlot5, state.RequireCharacterLevel_ConsumableSlot5); + Assert.Equal(1, state.RequireCharacterLevel_FullCostumeSlot); + Assert.Equal(1, state.RequireCharacterLevel_HairCostumeSlot); + Assert.Equal(1, state.RequireCharacterLevel_EarCostumeSlot); + Assert.Equal(1, state.RequireCharacterLevel_EyeCostumeSlot); + Assert.Equal(1, state.RequireCharacterLevel_TailCostumeSlot); + Assert.Equal(1, state.RequireCharacterLevel_TitleSlot); + + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotWeapon); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotArmor); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotBelt); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotNecklace); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotRing1); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotRing2); + Assert.Equal(1, state.RequireCharacterLevel_EquipmentSlotAura); + + Assert.Equal(1, state.RequireCharacterLevel_ConsumableSlot1); + Assert.Equal(35, state.RequireCharacterLevel_ConsumableSlot2); + Assert.Equal(100, state.RequireCharacterLevel_ConsumableSlot3); + Assert.Equal(200, state.RequireCharacterLevel_ConsumableSlot4); + Assert.Equal(350, state.RequireCharacterLevel_ConsumableSlot5); } [Fact] @@ -122,7 +122,7 @@ public void CheckPermission() .SetState( Addresses.TableSheet.Derive(tableName), Dictionary.Empty.Add(tableName, "Initial")); - var state = new MockStateDelta(initStates); + var state = new Account(initStates); var action = new PatchTableSheet() { TableName = tableName, @@ -167,7 +167,7 @@ public void ExecuteNewTable() .SetState( Addresses.TableSheet.Derive(tableName), Dictionary.Empty.Add(tableName, "Initial")); - var state = new MockStateDelta(initStates); + var state = new Account(initStates); var action = new PatchTableSheet() { TableName = nameof(CostumeStatSheet), diff --git a/.Lib9c.Tests/Action/PetEnhancement0Test.cs b/.Lib9c.Tests/Action/PetEnhancement0Test.cs index 9908f5dea5..ad523b8783 100644 --- a/.Lib9c.Tests/Action/PetEnhancement0Test.cs +++ b/.Lib9c.Tests/Action/PetEnhancement0Test.cs @@ -378,7 +378,7 @@ private static IAccount Execute( { BlockIndex = blockIndex, PreviousState = prevStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = agentAddr, }); diff --git a/.Lib9c.Tests/Action/PrepareRewardAssetsTest.cs b/.Lib9c.Tests/Action/PrepareRewardAssetsTest.cs index d4233cc121..25a8d79267 100644 --- a/.Lib9c.Tests/Action/PrepareRewardAssetsTest.cs +++ b/.Lib9c.Tests/Action/PrepareRewardAssetsTest.cs @@ -36,7 +36,7 @@ public void Execute(bool admin, bool includeNcg, Type exc) #pragma warning restore CS0618 } - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(Addresses.Admin, adminState.Serialize()); var action = new PrepareRewardAssets(poolAddress, assets); diff --git a/.Lib9c.Tests/Action/Raid1Test.cs b/.Lib9c.Tests/Action/Raid1Test.cs index 21e50a7ee9..ed7e5c58bb 100644 --- a/.Lib9c.Tests/Action/Raid1Test.cs +++ b/.Lib9c.Tests/Action/Raid1Test.cs @@ -113,7 +113,7 @@ long executeOffset var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -212,7 +212,7 @@ long executeOffset { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -349,7 +349,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -375,7 +375,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -462,7 +462,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + Raid4.RequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); @@ -527,7 +527,7 @@ public void Execute_Throw_ActionObsoletedException() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -560,7 +560,7 @@ public void Execute_Throw_ActionObsoletedException() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); diff --git a/.Lib9c.Tests/Action/Raid2Test.cs b/.Lib9c.Tests/Action/Raid2Test.cs index f12f3dc358..87bc1af9a8 100644 --- a/.Lib9c.Tests/Action/Raid2Test.cs +++ b/.Lib9c.Tests/Action/Raid2Test.cs @@ -116,7 +116,7 @@ bool raiderListExist var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -224,7 +224,7 @@ bool raiderListExist { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -367,7 +367,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -393,7 +393,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -481,7 +481,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + Raid4.RequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/Raid3Test.cs b/.Lib9c.Tests/Action/Raid3Test.cs index 400705b17a..d136b07503 100644 --- a/.Lib9c.Tests/Action/Raid3Test.cs +++ b/.Lib9c.Tests/Action/Raid3Test.cs @@ -117,7 +117,7 @@ bool raiderListExist var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -225,7 +225,7 @@ bool raiderListExist { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -368,7 +368,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -395,7 +395,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -483,7 +483,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + Raid4.RequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/Raid4Test.cs b/.Lib9c.Tests/Action/Raid4Test.cs index bac4860ddb..ff3c6d6ec6 100644 --- a/.Lib9c.Tests/Action/Raid4Test.cs +++ b/.Lib9c.Tests/Action/Raid4Test.cs @@ -136,7 +136,7 @@ int runeId2 var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -246,7 +246,7 @@ int runeId2 { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -401,7 +401,7 @@ Dictionary rewardMap BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -409,7 +409,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -436,7 +436,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -524,7 +524,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + Raid4.RequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); @@ -588,7 +588,7 @@ public void Execute_With_Free_Crystal_Fee() "1,900002,0,100,0,1,1,40"; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -625,7 +625,7 @@ public void Execute_With_Free_Crystal_Fee() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; diff --git a/.Lib9c.Tests/Action/Raid5Test.cs b/.Lib9c.Tests/Action/Raid5Test.cs index 866736a787..9edb82739d 100644 --- a/.Lib9c.Tests/Action/Raid5Test.cs +++ b/.Lib9c.Tests/Action/Raid5Test.cs @@ -44,7 +44,7 @@ public Raid5Test() [InlineData(null, true, true, true, false, 0, 0L, false, false, 0, false, false, false, 5, false, 0, 10002, 1, 30001)] [InlineData(null, true, true, true, false, 0, 0L, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] // Refill by interval. - [InlineData(null, true, true, false, true, 0, -WorldBossHelper.RefillInterval, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] + [InlineData(null, true, true, false, true, 0, -8640, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] // Refill by NCG. [InlineData(null, true, true, false, true, 0, 200L, true, true, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] [InlineData(null, true, true, false, true, 0, 200L, true, true, 1, false, false, false, 5, true, 0, 10002, 1, 30001)] @@ -136,7 +136,7 @@ int runeId2 var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -246,7 +246,7 @@ int runeId2 { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -401,7 +401,7 @@ Dictionary rewardMap BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -409,7 +409,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -436,7 +436,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -526,7 +526,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + gameConfigState.WorldBossRequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); @@ -590,7 +590,7 @@ public void Execute_With_Free_Crystal_Fee() "1,900002,0,100,0,1,1,40"; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -627,7 +627,7 @@ public void Execute_With_Free_Crystal_Fee() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; diff --git a/.Lib9c.Tests/Action/Raid6Test.cs b/.Lib9c.Tests/Action/Raid6Test.cs index b6f3b26ac9..50c1cba896 100644 --- a/.Lib9c.Tests/Action/Raid6Test.cs +++ b/.Lib9c.Tests/Action/Raid6Test.cs @@ -44,7 +44,7 @@ public Raid6Test() [InlineData(null, true, true, true, false, 0, 0L, false, false, 0, false, false, false, 5, false, 0, 10002, 1, 30001)] [InlineData(null, true, true, true, false, 0, 0L, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] // Refill by interval. - [InlineData(null, true, true, false, true, 0, -WorldBossHelper.RefillInterval, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] + [InlineData(null, true, true, false, true, 0, -8640, false, false, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] // Refill by NCG. [InlineData(null, true, true, false, true, 0, 200L, true, true, 0, false, false, false, 5, true, 0, 10002, 1, 30001)] [InlineData(null, true, true, false, true, 0, 200L, true, true, 1, false, false, false, 5, true, 0, 10002, 1, 30001)] @@ -136,7 +136,7 @@ int runeId2 var fee = _tableSheets.WorldBossListSheet[raidId].EntranceFee; var context = new ActionContext(); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -246,7 +246,7 @@ int runeId2 { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; @@ -401,7 +401,7 @@ Dictionary rewardMap BlockIndex = 1, PreviousState = state, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); } @@ -409,7 +409,7 @@ Dictionary rewardMap { BlockIndex = blockIndex + executeOffset, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, })); @@ -436,7 +436,7 @@ public void Execute_With_Reward() Address bossAddress = Addresses.GetWorldBossAddress(raidId); Address worldBossKillRewardRecordAddress = Addresses.GetWorldBossKillRewardRecordAddress(_avatarAddress, raidId); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -526,7 +526,7 @@ Dictionary rewardMap { BlockIndex = worldBossRow.StartedBlockIndex + gameConfigState.WorldBossRequiredInterval, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }); @@ -590,7 +590,7 @@ public void Execute_With_Free_Crystal_Fee() "1,900002,0,100,0,1,1,40"; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - IAccount state = new MockStateDelta() + IAccount state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(_agentAddress, new AgentState(_agentAddress).Serialize()); @@ -627,7 +627,7 @@ public void Execute_With_Free_Crystal_Fee() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(randomSeed), + RandomSeed = randomSeed, Rehearsal = false, Signer = _agentAddress, }; diff --git a/.Lib9c.Tests/Action/RankingBattle0Test.cs b/.Lib9c.Tests/Action/RankingBattle0Test.cs index 4c3cc9f13b..553780f326 100644 --- a/.Lib9c.Tests/Action/RankingBattle0Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle0Test.cs @@ -29,7 +29,7 @@ public class RankingBattle0Test public RankingBattle0Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -134,7 +134,7 @@ public void Execute() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -168,7 +168,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -213,7 +213,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -248,7 +248,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -280,7 +280,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -326,7 +326,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException( { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -367,7 +367,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -418,7 +418,7 @@ public void ExecuteThrowNotEnoughFungibleAssetValueException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); diff --git a/.Lib9c.Tests/Action/RankingBattle10Test.cs b/.Lib9c.Tests/Action/RankingBattle10Test.cs index ba8d32c971..0a9b613ae2 100644 --- a/.Lib9c.Tests/Action/RankingBattle10Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle10Test.cs @@ -31,7 +31,7 @@ public class RankingBattle10Test public RankingBattle10Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var keys = new List { @@ -214,7 +214,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -268,7 +268,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -312,7 +312,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -346,7 +346,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -377,7 +377,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -410,7 +410,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -450,7 +450,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -477,7 +477,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -539,7 +539,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle11Test.cs b/.Lib9c.Tests/Action/RankingBattle11Test.cs index c640d8ef0e..05930913ec 100644 --- a/.Lib9c.Tests/Action/RankingBattle11Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle11Test.cs @@ -34,7 +34,7 @@ public class RankingBattle11Test public RankingBattle11Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var keys = new List { @@ -197,7 +197,7 @@ public void Execute() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = RankingBattle11.UpdateTargetBlockIndex, }); @@ -339,7 +339,7 @@ public void Execute_Backward_Compatible(bool isNew, bool avatarBackward, bool en { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, BlockIndex = RankingBattle11.UpdateTargetBlockIndex - 1, }); @@ -394,7 +394,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -438,7 +438,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -472,7 +472,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -503,7 +503,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -536,7 +536,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -576,7 +576,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -651,7 +651,7 @@ public void Execute_Throw_NotEnoughAvatarLevelException(int avatarLevel) { PreviousState = state, Signer = _agent1Address, - Random = random, + RandomSeed = random.Seed, BlockIndex = 3806324 + 1, // Ranking Battle Action throws NotEnoughAvatarLevelException when BlockIndex is higher than 3806324. })); } @@ -679,7 +679,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext { @@ -741,7 +741,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } @@ -777,7 +777,7 @@ public void Execute_ActionObsoletedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); diff --git a/.Lib9c.Tests/Action/RankingBattle2Test.cs b/.Lib9c.Tests/Action/RankingBattle2Test.cs index f2359dd093..72e673c4db 100644 --- a/.Lib9c.Tests/Action/RankingBattle2Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle2Test.cs @@ -29,7 +29,7 @@ public class RankingBattle2Test public RankingBattle2Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -127,7 +127,7 @@ public void Execute() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -161,7 +161,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -206,7 +206,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -241,7 +241,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -273,7 +273,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -319,7 +319,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException( { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -360,7 +360,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -382,7 +382,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/RankingBattle3Test.cs b/.Lib9c.Tests/Action/RankingBattle3Test.cs index ef102d7618..c408f0ba18 100644 --- a/.Lib9c.Tests/Action/RankingBattle3Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle3Test.cs @@ -29,7 +29,7 @@ public class RankingBattle3Test public RankingBattle3Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -127,7 +127,7 @@ public void Execute() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -161,7 +161,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -206,7 +206,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -241,7 +241,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -273,7 +273,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -319,7 +319,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException( { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -360,7 +360,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -382,7 +382,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -447,7 +447,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle4Test.cs b/.Lib9c.Tests/Action/RankingBattle4Test.cs index d3c8f556b3..3a1946b652 100644 --- a/.Lib9c.Tests/Action/RankingBattle4Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle4Test.cs @@ -30,7 +30,7 @@ public class RankingBattle4Test public RankingBattle4Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -164,7 +164,7 @@ public void Execute(bool isNew) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -197,7 +197,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -242,7 +242,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -277,7 +277,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -309,7 +309,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -343,7 +343,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -384,7 +384,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -406,7 +406,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -471,7 +471,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle5Test.cs b/.Lib9c.Tests/Action/RankingBattle5Test.cs index c835c3ab1e..3dc4255b8b 100644 --- a/.Lib9c.Tests/Action/RankingBattle5Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle5Test.cs @@ -32,7 +32,7 @@ public class RankingBattle5Test public RankingBattle5Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -194,7 +194,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -227,7 +227,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -272,7 +272,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -307,7 +307,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -339,7 +339,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -373,7 +373,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -414,7 +414,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -442,7 +442,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -471,7 +471,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -536,7 +536,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle6Test.cs b/.Lib9c.Tests/Action/RankingBattle6Test.cs index ceaf70faeb..6cefff07b3 100644 --- a/.Lib9c.Tests/Action/RankingBattle6Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle6Test.cs @@ -32,7 +32,7 @@ public class RankingBattle6Test public RankingBattle6Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -194,7 +194,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -227,7 +227,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -272,7 +272,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -307,7 +307,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -339,7 +339,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -373,7 +373,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -414,7 +414,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -442,7 +442,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -471,7 +471,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -536,7 +536,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle7Test.cs b/.Lib9c.Tests/Action/RankingBattle7Test.cs index bb40f38cd8..f893b4deed 100644 --- a/.Lib9c.Tests/Action/RankingBattle7Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle7Test.cs @@ -32,7 +32,7 @@ public class RankingBattle7Test public RankingBattle7Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -194,7 +194,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -227,7 +227,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -272,7 +272,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -307,7 +307,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -339,7 +339,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -373,7 +373,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -414,7 +414,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -442,7 +442,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -471,7 +471,7 @@ public void SerializeWithDotnetAPI() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -536,7 +536,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle8Test.cs b/.Lib9c.Tests/Action/RankingBattle8Test.cs index f788da8d49..aa01036a0f 100644 --- a/.Lib9c.Tests/Action/RankingBattle8Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle8Test.cs @@ -33,7 +33,7 @@ public class RankingBattle8Test public RankingBattle8Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -209,7 +209,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -264,7 +264,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -309,7 +309,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -344,7 +344,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -376,7 +376,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -410,7 +410,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -451,7 +451,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -479,7 +479,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -544,7 +544,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattle9Test.cs b/.Lib9c.Tests/Action/RankingBattle9Test.cs index 111f9629ec..28ab7acfba 100644 --- a/.Lib9c.Tests/Action/RankingBattle9Test.cs +++ b/.Lib9c.Tests/Action/RankingBattle9Test.cs @@ -33,7 +33,7 @@ public class RankingBattle9Test public RankingBattle9Test(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -209,7 +209,7 @@ public void Execute(bool isNew, bool avatarBackward, bool enemyBackward) { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -264,7 +264,7 @@ public void ExecuteThrowInvalidAddressException() { PreviousState = _initialState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -309,7 +309,7 @@ public void ExecuteThrowFailedLoadStateException(int caseIndex) { PreviousState = _initialState, Signer = signer, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -344,7 +344,7 @@ public void ExecuteThrowNotEnoughClearedStageLevelException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -376,7 +376,7 @@ public void ExecuteThrowWeeklyArenaStateAlreadyEndedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -410,7 +410,7 @@ public void ExecuteThrowWeeklyArenaStateNotContainsAvatarAddressException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -451,7 +451,7 @@ public void ExecuteThrowNotEnoughWeeklyArenaChallengeCountException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -479,7 +479,7 @@ public void Rehearsal() _avatar1Address.Derive(LegacyQuestListKey), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -544,7 +544,7 @@ public void MultipleEquipmentTest(ItemSubType type, int maxCount) { PreviousState = state, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, })); } diff --git a/.Lib9c.Tests/Action/RankingBattleTest.cs b/.Lib9c.Tests/Action/RankingBattleTest.cs index e529531585..9ad2abc37a 100644 --- a/.Lib9c.Tests/Action/RankingBattleTest.cs +++ b/.Lib9c.Tests/Action/RankingBattleTest.cs @@ -29,7 +29,7 @@ public class RankingBattleTest public RankingBattleTest(ITestOutputHelper outputHelper) { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var keys = new List { @@ -169,7 +169,7 @@ public void ExecuteActionObsoletedException() { PreviousState = previousState, Signer = _agent1Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); diff --git a/.Lib9c.Tests/Action/RapidCombination0Test.cs b/.Lib9c.Tests/Action/RapidCombination0Test.cs index 18ea74c1ed..bdf19a804f 100644 --- a/.Lib9c.Tests/Action/RapidCombination0Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination0Test.cs @@ -27,7 +27,7 @@ public class RapidCombination0Test public RapidCombination0Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) diff --git a/.Lib9c.Tests/Action/RapidCombination2Test.cs b/.Lib9c.Tests/Action/RapidCombination2Test.cs index d0af9767ca..9af19b7494 100644 --- a/.Lib9c.Tests/Action/RapidCombination2Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination2Test.cs @@ -27,7 +27,7 @@ public class RapidCombination2Test public RapidCombination2Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) diff --git a/.Lib9c.Tests/Action/RapidCombination3Test.cs b/.Lib9c.Tests/Action/RapidCombination3Test.cs index f0cadf4c75..8bc2a45535 100644 --- a/.Lib9c.Tests/Action/RapidCombination3Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination3Test.cs @@ -27,7 +27,7 @@ public class RapidCombination3Test public RapidCombination3Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) diff --git a/.Lib9c.Tests/Action/RapidCombination4Test.cs b/.Lib9c.Tests/Action/RapidCombination4Test.cs index 6549a3b90d..674c12439b 100644 --- a/.Lib9c.Tests/Action/RapidCombination4Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination4Test.cs @@ -29,7 +29,7 @@ public class RapidCombination4Test public RapidCombination4Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -382,7 +382,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination4 { diff --git a/.Lib9c.Tests/Action/RapidCombination5Test.cs b/.Lib9c.Tests/Action/RapidCombination5Test.cs index 8f6504c3c6..8fdf14d652 100644 --- a/.Lib9c.Tests/Action/RapidCombination5Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination5Test.cs @@ -29,7 +29,7 @@ public class RapidCombination5Test public RapidCombination5Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -382,7 +382,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination5 { diff --git a/.Lib9c.Tests/Action/RapidCombination6Test.cs b/.Lib9c.Tests/Action/RapidCombination6Test.cs index ce6c7365a8..104a8efa28 100644 --- a/.Lib9c.Tests/Action/RapidCombination6Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination6Test.cs @@ -31,7 +31,7 @@ public class RapidCombination6Test public RapidCombination6Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -384,7 +384,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination6 { diff --git a/.Lib9c.Tests/Action/RapidCombination7Test.cs b/.Lib9c.Tests/Action/RapidCombination7Test.cs index 2ce549267d..3af440cf51 100644 --- a/.Lib9c.Tests/Action/RapidCombination7Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination7Test.cs @@ -31,7 +31,7 @@ public class RapidCombination7Test public RapidCombination7Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) @@ -384,7 +384,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination7 { diff --git a/.Lib9c.Tests/Action/RapidCombination8Test.cs b/.Lib9c.Tests/Action/RapidCombination8Test.cs index 1a5acf2acc..a7a1a1545c 100644 --- a/.Lib9c.Tests/Action/RapidCombination8Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination8Test.cs @@ -6,6 +6,7 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -31,9 +32,10 @@ public class RapidCombination8Test public RapidCombination8Test() { - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(GameConfigSheet)] = GameConfigSheetFixtures.Default; foreach (var (key, value) in sheets) { _initialState = _initialState.SetState( @@ -384,7 +386,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination8 { diff --git a/.Lib9c.Tests/Action/RapidCombination9Test.cs b/.Lib9c.Tests/Action/RapidCombination9Test.cs index f9327425d7..23be0d5426 100644 --- a/.Lib9c.Tests/Action/RapidCombination9Test.cs +++ b/.Lib9c.Tests/Action/RapidCombination9Test.cs @@ -6,6 +6,9 @@ namespace Lib9c.Tests.Action using System.Globalization; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; + using Lib9c.Tests.Fixtures.TableCSV.Item; + using Lib9c.Tests.Util; using Libplanet.Action; using Libplanet.Action.State; using Libplanet.Crypto; @@ -31,18 +34,32 @@ public class RapidCombination9Test public RapidCombination9Test() { - _initialState = new MockStateDelta(); - - var sheets = TableSheetsImporter.ImportSheets(); + _initialState = new Account(MockState.Empty); + Dictionary sheets; + (_initialState, sheets) = InitializeUtil.InitializeTableSheets( + _initialState, + sheetsOverride: new Dictionary + { + { + "EquipmentItemRecipeSheet", + EquipmentItemRecipeSheetFixtures.Default + }, + { + "EquipmentItemSubRecipeSheet", + EquipmentItemSubRecipeSheetFixtures.V1 + }, + { + "GameConfigSheet", + GameConfigSheetFixtures.Default + }, + }); + _tableSheets = new TableSheets(sheets); foreach (var (key, value) in sheets) { - _initialState = _initialState.SetState( - Addresses.TableSheet.Derive(key), - value.Serialize()); + _initialState = + _initialState.SetState(Addresses.TableSheet.Derive(key), value.Serialize()); } - _tableSheets = new TableSheets(sheets); - _agentAddress = new PrivateKey().ToAddress(); var agentState = new AgentState(_agentAddress); @@ -384,7 +401,7 @@ public void Rehearsal() slotAddress, }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = new RapidCombination9 { diff --git a/.Lib9c.Tests/Action/ReRegisterProduct0Test.cs b/.Lib9c.Tests/Action/ReRegisterProduct0Test.cs index 7a1131dd65..65d5c1566d 100644 --- a/.Lib9c.Tests/Action/ReRegisterProduct0Test.cs +++ b/.Lib9c.Tests/Action/ReRegisterProduct0Test.cs @@ -39,7 +39,7 @@ public ReRegisterProduct0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -235,7 +235,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -282,7 +282,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/ReRegisterProductTest.cs b/.Lib9c.Tests/Action/ReRegisterProductTest.cs index 446bf0779b..f240de2b79 100644 --- a/.Lib9c.Tests/Action/ReRegisterProductTest.cs +++ b/.Lib9c.Tests/Action/ReRegisterProductTest.cs @@ -39,7 +39,7 @@ public ReRegisterProductTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -235,7 +235,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -282,7 +282,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/RedeemCode0Test.cs b/.Lib9c.Tests/Action/RedeemCode0Test.cs index a957b5ca23..366fea6497 100644 --- a/.Lib9c.Tests/Action/RedeemCode0Test.cs +++ b/.Lib9c.Tests/Action/RedeemCode0Test.cs @@ -68,7 +68,7 @@ public void Execute() #pragma warning restore CS0618 var context = new ActionContext(); - var initialState = new MockStateDelta() + var initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) .SetState(RedeemCodeState.Address, prevRedeemCodesState.Serialize()) @@ -95,7 +95,7 @@ public void Execute() PreviousState = initialState, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); // Check target avatar & agent @@ -125,7 +125,7 @@ public void Rehearsal() { BlockIndex = 1, Miner = default, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Rehearsal = true, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/RedeemCodeTest.cs b/.Lib9c.Tests/Action/RedeemCodeTest.cs index 9aa536a3c0..f3efda7057 100644 --- a/.Lib9c.Tests/Action/RedeemCodeTest.cs +++ b/.Lib9c.Tests/Action/RedeemCodeTest.cs @@ -71,7 +71,7 @@ public void Execute(bool backward) #pragma warning restore CS0618 var context = new ActionContext(); - var initialState = new MockStateDelta() + var initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(RedeemCodeState.Address, prevRedeemCodesState.Serialize()) .SetState(GoldCurrencyState.Address, goldState.Serialize()) @@ -110,7 +110,7 @@ public void Execute(bool backward) PreviousState = initialState, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); // Check target avatar & agent @@ -140,7 +140,7 @@ public void Rehearsal() { BlockIndex = 1, Miner = default, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Rehearsal = true, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/RegisterProduct0Test.cs b/.Lib9c.Tests/Action/RegisterProduct0Test.cs index 22810d021c..f1c9a16a48 100644 --- a/.Lib9c.Tests/Action/RegisterProduct0Test.cs +++ b/.Lib9c.Tests/Action/RegisterProduct0Test.cs @@ -54,7 +54,7 @@ public RegisterProduct0Test() }; agentState.avatarAddresses[0] = AvatarAddress; - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, new GoldCurrencyState(Gold).Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.MaterialItemSheet.Serialize()) .SetState(Addresses.GameConfig, _gameConfigState.Serialize()) @@ -243,7 +243,7 @@ public void Execute() { BlockIndex = 1L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }); @@ -296,7 +296,7 @@ public void Execute_Validate_RegisterInfos(params ValidateMember[] validateMembe Assert.Throws(validateMember.Exc, () => action.Execute(new ActionContext { PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, })); } @@ -367,7 +367,7 @@ public void Execute_Throw_ItemDoesNotExistException(ProductType type, int itemCo { Signer = _agentAddress, BlockIndex = blockIndex, - Random = new TestRandom(), + RandomSeed = 0, PreviousState = _initialState, })); } diff --git a/.Lib9c.Tests/Action/RegisterProduct2Test.cs b/.Lib9c.Tests/Action/RegisterProduct2Test.cs index 233de15cbd..e6ef9b82f5 100644 --- a/.Lib9c.Tests/Action/RegisterProduct2Test.cs +++ b/.Lib9c.Tests/Action/RegisterProduct2Test.cs @@ -54,7 +54,7 @@ public RegisterProduct2Test() }; agentState.avatarAddresses[0] = AvatarAddress; - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, new GoldCurrencyState(Gold).Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.MaterialItemSheet.Serialize()) .SetState(Addresses.GameConfig, _gameConfigState.Serialize()) @@ -243,7 +243,7 @@ public void Execute() { BlockIndex = 1L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }); @@ -296,7 +296,7 @@ public void Execute_Validate_RegisterInfos(params ValidateMember[] validateMembe Assert.Throws(validateMember.Exc, () => action.Execute(new ActionContext { PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, })); } @@ -368,7 +368,7 @@ public void Execute_Throw_ItemDoesNotExistException(ProductType type, int itemCo { Signer = _agentAddress, BlockIndex = blockIndex, - Random = new TestRandom(), + RandomSeed = 0, PreviousState = _initialState, })); } diff --git a/.Lib9c.Tests/Action/RenewAdminStateTest.cs b/.Lib9c.Tests/Action/RenewAdminStateTest.cs index 7113ec4dc5..652c9f3084 100644 --- a/.Lib9c.Tests/Action/RenewAdminStateTest.cs +++ b/.Lib9c.Tests/Action/RenewAdminStateTest.cs @@ -22,7 +22,7 @@ public RenewAdminStateTest() _adminPrivateKey = new PrivateKey(); _validUntil = 1_500_000L; _adminState = new AdminState(_adminPrivateKey.ToAddress(), _validUntil); - _stateDelta = new MockStateDelta( + _stateDelta = new Account( MockState.Empty .SetState(Addresses.Admin, _adminState.Serialize())); } diff --git a/.Lib9c.Tests/Action/RequestPledgeTest.cs b/.Lib9c.Tests/Action/RequestPledgeTest.cs index 17ded3b8c6..cf5a34f821 100644 --- a/.Lib9c.Tests/Action/RequestPledgeTest.cs +++ b/.Lib9c.Tests/Action/RequestPledgeTest.cs @@ -20,7 +20,7 @@ public void Execute(int contractedMead) Currency mead = Currencies.Mead; Address patron = new PrivateKey().ToAddress(); var context = new ActionContext(); - IAccount states = new MockStateDelta().MintAsset(context, patron, 2 * mead); + IAccount states = new Account(MockState.Empty).MintAsset(context, patron, 2 * mead); var address = new PrivateKey().ToAddress(); var action = new RequestPledge { @@ -51,7 +51,7 @@ public void Execute_Throw_AlreadyContractedException() Address patron = new PrivateKey().ToAddress(); var address = new PrivateKey().ToAddress(); Address contractAddress = address.GetPledgeAddress(); - IAccount states = new MockStateDelta().SetState(contractAddress, List.Empty); + IAccount states = new Account(MockState.Empty).SetState(contractAddress, List.Empty); var action = new RequestPledge { AgentAddress = address, diff --git a/.Lib9c.Tests/Action/RewardGoldTest.cs b/.Lib9c.Tests/Action/RewardGoldTest.cs index 280f7d7ed6..dd515ca590 100644 --- a/.Lib9c.Tests/Action/RewardGoldTest.cs +++ b/.Lib9c.Tests/Action/RewardGoldTest.cs @@ -37,7 +37,7 @@ public class RewardGoldTest { private readonly AvatarState _avatarState; private readonly AvatarState _avatarState2; - private readonly MockStateDelta _baseState; + private readonly IAccount _baseState; private readonly TableSheets _tableSheets; public RewardGoldTest() @@ -77,7 +77,7 @@ public RewardGoldTest() var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); #pragma warning restore CS0618 IActionContext context = new ActionContext(); - _baseState = (MockStateDelta)new MockStateDelta() + _baseState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState(Addresses.GoldDistribution, GoldDistributionTest.Fixture.Select(v => v.Serialize()).Serialize()) .MintAsset(context, GoldCurrencyState.Address, gold.Currency * 100000000000); @@ -527,9 +527,7 @@ public async Task Genesis_StateRootHash(bool mainnet) ); var tempActionEvaluator = new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates( - new MemoryStore(), - new TrieStateStore(new MemoryKeyValueStore())), + stateStore: new TrieStateStore(new MemoryKeyValueStore()), actionTypeLoader: new NCActionLoader()); genesis = BlockChain.ProposeGenesisBlock( tempActionEvaluator, @@ -552,7 +550,7 @@ public async Task Genesis_StateRootHash(bool mainnet) genesisBlock: genesis, actionEvaluator: new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: new IRenderer[] { new ActionRenderer(), new BlockRenderer() } @@ -571,7 +569,7 @@ public void TransferMead(int patronMead, int balance) var patronAddress = new PrivateKey().ToAddress(); var contractAddress = agentAddress.GetPledgeAddress(); IActionContext context = new ActionContext(); - IAccount states = new MockStateDelta() + IAccount states = new Account(MockState.Empty) .MintAsset(context, patronAddress, patronMead * Currencies.Mead) .TransferAsset(context, patronAddress, agentAddress, 1 * Currencies.Mead) .SetState(contractAddress, List.Empty.Add(patronAddress.Serialize()).Add(true.Serialize()).Add(balance.Serialize())) diff --git a/.Lib9c.Tests/Action/RuneEnhancement0Test.cs b/.Lib9c.Tests/Action/RuneEnhancement0Test.cs index 75f1503ec9..70db188fcc 100644 --- a/.Lib9c.Tests/Action/RuneEnhancement0Test.cs +++ b/.Lib9c.Tests/Action/RuneEnhancement0Test.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System; using System.Linq; using Bencodex.Types; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -38,7 +39,7 @@ public void Execute(int seed) var goldCurrencyState = new GoldCurrencyState(_goldCurrency); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -118,7 +119,7 @@ public void Execute(int seed) { BlockIndex = blockIndex, PreviousState = state, - Random = rand, + RandomSeed = rand.Seed, Rehearsal = false, Signer = agentAddress, }; @@ -190,7 +191,7 @@ public void Execute_RuneCostNotFoundException() .StartedBlockIndex; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -225,7 +226,7 @@ public void Execute_RuneCostNotFoundException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -243,7 +244,7 @@ public void Execute_RuneCostDataNotFoundException() .StartedBlockIndex; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -290,7 +291,7 @@ public void Execute_RuneCostDataNotFoundException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -312,7 +313,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, var goldCurrencyState = new GoldCurrencyState(_goldCurrency); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -382,7 +383,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -407,7 +408,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -425,7 +426,7 @@ public void Execute_TryCountIsZeroException() .StartedBlockIndex; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -461,7 +462,7 @@ public void Execute_TryCountIsZeroException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } diff --git a/.Lib9c.Tests/Action/RuneEnhancementTest.cs b/.Lib9c.Tests/Action/RuneEnhancementTest.cs index d545b243f4..48bdd085f4 100644 --- a/.Lib9c.Tests/Action/RuneEnhancementTest.cs +++ b/.Lib9c.Tests/Action/RuneEnhancementTest.cs @@ -3,6 +3,7 @@ namespace Lib9c.Tests.Action using System; using System.Linq; using Bencodex.Types; + using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; using Nekoyume; @@ -53,7 +54,7 @@ public void Execute(int seed) ); agentState.avatarAddresses.Add(0, avatarAddress); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, agentState.SerializeV2()) .SetState(avatarAddress, avatarState.SerializeV2()) @@ -128,7 +129,7 @@ public void Execute(int seed) { BlockIndex = blockIndex, PreviousState = state, - Random = rand, + RandomSeed = rand.Seed, Rehearsal = false, Signer = agentAddress, }; @@ -214,7 +215,7 @@ public void Execute_RuneCostNotFoundException() rankingMapAddress ); agentState.avatarAddresses.Add(0, avatarAddress); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, agentState.SerializeV2()) .SetState(avatarAddress, avatarState.SerializeV2()) @@ -244,7 +245,7 @@ public void Execute_RuneCostNotFoundException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -276,7 +277,7 @@ public void Execute_RuneCostDataNotFoundException() rankingMapAddress ); agentState.avatarAddresses.Add(0, avatarAddress); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, agentState.SerializeV2()) .SetState(avatarAddress, avatarState.SerializeV2()) @@ -318,7 +319,7 @@ public void Execute_RuneCostDataNotFoundException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -354,7 +355,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, ); agentState.avatarAddresses.Add(0, avatarAddress); var context = new ActionContext(); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, agentState.SerializeV2()) .SetState(avatarAddress, avatarState.SerializeV2()) @@ -419,7 +420,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -444,7 +445,7 @@ public void Execute_NotEnoughFungibleAssetValueException(bool ncg, bool crystal, { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -476,7 +477,7 @@ public void Execute_TryCountIsZeroException() rankingMapAddress ); agentState.avatarAddresses.Add(0, avatarAddress); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, agentState.SerializeV2()) .SetState(avatarAddress, avatarState.SerializeV2()) @@ -507,7 +508,7 @@ public void Execute_TryCountIsZeroException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -525,7 +526,7 @@ public void Execute_FailedLoadStateException() .StartedBlockIndex; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -559,7 +560,7 @@ public void Execute_FailedLoadStateException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } diff --git a/.Lib9c.Tests/Action/Scenario/ArenaScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/ArenaScenarioTest.cs index 48aefabda1..4ba7592809 100644 --- a/.Lib9c.Tests/Action/Scenario/ArenaScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/ArenaScenarioTest.cs @@ -37,7 +37,7 @@ public ArenaScenarioTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _state = new Tests.Action.MockStateDelta(); + _state = new Account(MockState.Empty); _sheets = TableSheetsImporter.ImportSheets(); var tableSheets = new TableSheets(_sheets); @@ -115,7 +115,7 @@ public IAccount JoinArena( { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = roundData.StartBlockIndex, }); @@ -146,7 +146,7 @@ public IAccount BattleArena( { PreviousState = _state, Signer = signer, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, BlockIndex = blockIndex, }); diff --git a/.Lib9c.Tests/Action/Scenario/AuraScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/AuraScenarioTest.cs index d870f5023e..8acd074e2f 100644 --- a/.Lib9c.Tests/Action/Scenario/AuraScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/AuraScenarioTest.cs @@ -4,6 +4,7 @@ namespace Lib9c.Tests.Action.Scenario using System.Collections.Generic; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV; using Libplanet.Action.State; using Libplanet.Crypto; using Libplanet.Types.Assets; @@ -46,11 +47,11 @@ public AuraScenarioTest() _tableSheets.EquipmentItemSheet.Values.First(r => r.ItemSubType == ItemSubType.Aura); _aura = (Aura)ItemFactory.CreateItemUsable(auraRow, Guid.NewGuid(), 0L); _aura.StatsMap.AddStatAdditionalValue(StatType.CRI, 1); - var skillRow = _tableSheets.SkillSheet[800001]; + var skillRow = _tableSheets.SkillSheet[210011]; var skill = SkillFactory.Get(skillRow, 0, 100, 0, StatType.NONE); _aura.Skills.Add(skill); var addresses = new[] { _avatarAddress, _enemyAvatarAddress }; - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); for (int i = 0; i < addresses.Length; i++) { var avatarAddress = addresses[i]; @@ -116,7 +117,7 @@ public void HackAndSlash() { BlockIndex = 2, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, })); @@ -130,7 +131,7 @@ public void HackAndSlash() { BlockIndex = 3, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }); @@ -170,7 +171,7 @@ public void Raid() { BlockIndex = 5045201, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }); Assert_Player(avatarState, nextState, _avatarAddress, itemSlotStateAddress); @@ -247,7 +248,7 @@ public void Arena() Signer = _agentAddress, PreviousState = prevState, BlockIndex = 2, - Random = new TestRandom(), + RandomSeed = 0, }); var avatarState = prevState.GetAvatarStateV2(avatarAddress); var enemyAvatarState = prevState.GetAvatarStateV2(enemyAvatarAddress); @@ -275,7 +276,7 @@ public void Arena() foreach (var spawn in log.OfType()) { ArenaCharacter character = spawn.Character; - Assert.Equal(21, character.ATK); + Assert.Equal(100, character.HIT); Assert.Equal(11, character.CRI); } @@ -361,9 +362,11 @@ private void Assert_Player(AvatarState avatarState, IAccount state, Address avat Assert_ItemSlot(state, itemSlotStateAddress); var player = new Player(avatarState, _tableSheets.GetSimulatorSheets()); var equippedPlayer = new Player(nextAvatarState, _tableSheets.GetSimulatorSheets()); + int diffLevel = equippedPlayer.Level - player.Level; + var row = _tableSheets.CharacterSheet[player.CharacterId]; Assert.Null(player.aura); Assert.NotNull(equippedPlayer.aura); - Assert.Equal(player.ATK + 1, equippedPlayer.ATK); + Assert.Equal(player.HIT + 10 + (int)(row.LvHIT * diffLevel), equippedPlayer.HIT); Assert.Equal(player.CRI + 1, equippedPlayer.CRI); } diff --git a/.Lib9c.Tests/Action/Scenario/CombinationAndRapidCombinationTest.cs b/.Lib9c.Tests/Action/Scenario/CombinationAndRapidCombinationTest.cs deleted file mode 100644 index fb12529d15..0000000000 --- a/.Lib9c.Tests/Action/Scenario/CombinationAndRapidCombinationTest.cs +++ /dev/null @@ -1,297 +0,0 @@ -namespace Lib9c.Tests.Action.Scenario -{ - using System.Globalization; - using System.Linq; - using Bencodex.Types; - using Libplanet.Action.State; - using Libplanet.Crypto; - using Libplanet.Types.Assets; - using Nekoyume; - using Nekoyume.Action; - using Nekoyume.Model; - using Nekoyume.Model.Item; - using Nekoyume.Model.State; - using Nekoyume.TableData; - using Serilog; - using Xunit; - using Xunit.Abstractions; - using static Lib9c.SerializeKeys; - - public class CombinationAndRapidCombinationTest - { - private readonly IAccount _initialState; - private readonly TableSheets _tableSheets; - private Address _agentAddress; - private Address _avatarAddress; - private Address _inventoryAddress; - private Address _worldInformationAddress; - private Address _questListAddress; - private Address _slot0Address; - - public CombinationAndRapidCombinationTest(ITestOutputHelper outputHelper) - { - Log.Logger = new LoggerConfiguration() - .MinimumLevel.Verbose() - .WriteTo.TestOutput(outputHelper) - .CreateLogger(); - - var sheets = TableSheetsImporter.ImportSheets(); - _tableSheets = new TableSheets(sheets); - -#pragma warning disable CS0618 - // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 - var gold = new GoldCurrencyState(Currency.Legacy("NCG", 2, null)); -#pragma warning restore CS0618 - var gameConfigState = new GameConfigState(sheets[nameof(GameConfigSheet)]); - - _agentAddress = new PrivateKey().ToAddress(); - _avatarAddress = _agentAddress.Derive("avatar"); - _slot0Address = _avatarAddress.Derive( - string.Format( - CultureInfo.InvariantCulture, - CombinationSlotState.DeriveFormat, - 0 - ) - ); - var slot0State = new CombinationSlotState( - _slot0Address, - GameConfig.RequireClearedStageLevel.CombinationEquipmentAction); - - var agentState = new AgentState(_agentAddress); - agentState.avatarAddresses[0] = _avatarAddress; - - var avatarState = new AvatarState( - _avatarAddress, - _agentAddress, - 1, - _tableSheets.GetAvatarSheets(), - gameConfigState, - default - ) - { - worldInformation = new WorldInformation( - 0, - _tableSheets.WorldSheet, - GameConfig.RequireClearedStageLevel.CombinationEquipmentAction), - }; - - _inventoryAddress = _avatarAddress.Derive(LegacyInventoryKey); - _worldInformationAddress = _avatarAddress.Derive(LegacyWorldInformationKey); - _questListAddress = _avatarAddress.Derive(LegacyQuestListKey); - - _initialState = new Tests.Action.MockStateDelta() - .SetState(GoldCurrencyState.Address, gold.Serialize()) - .SetState(gameConfigState.address, gameConfigState.Serialize()) - .SetState(_agentAddress, agentState.Serialize()) - .SetState(_avatarAddress, avatarState.SerializeV2()) - .SetState(_inventoryAddress, avatarState.inventory.Serialize()) - .SetState(_worldInformationAddress, avatarState.worldInformation.Serialize()) - .SetState(_questListAddress, avatarState.questList.Serialize()) - .SetState(_slot0Address, slot0State.Serialize()); - - foreach (var (key, value) in sheets) - { - _initialState = _initialState - .SetState(Addresses.TableSheet.Derive(key), value.Serialize()); - } - } - - // NOTE: Do not remove. - // [Theory] - // [InlineData(new[] { 1 })] - // [InlineData(new[] { 1, 2 })] - // [InlineData(new[] { 1, 3 })] - // [InlineData(new[] { 1, 4 })] - // [InlineData(new[] { 1, 2, 3 })] - // [InlineData(new[] { 1, 2, 4 })] - // [InlineData(new[] { 1, 3, 4 })] - // [InlineData(new[] { 1, 2, 3, 4 })] - // public void FindRandomSeedForCase(int[] optionNumbers) - // { - // var randomSeed = 0; - // while (randomSeed < 100000) - // { - // try - // { - // Case(randomSeed, optionNumbers); - // } - // catch - // { - // randomSeed++; - // continue; - // } - // - // Log.Debug(randomSeed.ToString()); - // break; - // } - // } - [Theory] - [InlineData(6, new[] { 1 })] - [InlineData(0, new[] { 1, 2 })] - [InlineData(7, new[] { 1, 3 })] - [InlineData(9, new[] { 1, 4 })] - [InlineData(2, new[] { 1, 2, 3 })] - [InlineData(1, new[] { 1, 2, 4 })] - [InlineData(5, new[] { 1, 3, 4 })] - [InlineData(18, new[] { 1, 2, 3, 4 })] - public void Case(int randomSeed, int[] optionNumbers) - { - var gameConfigState = _initialState.GetGameConfigState(); - Assert.NotNull(gameConfigState); - - var subRecipeRow = _tableSheets.EquipmentItemSubRecipeSheetV2.OrderedList.First(e => - e.Options.Count == 4 && - e.RequiredBlockIndex > GameConfig.RequiredAppraiseBlock && - e.RequiredGold == 0); - var recipeRow = - _tableSheets.EquipmentItemRecipeSheet.OrderedList.First(e => e.SubRecipeIds.Contains(subRecipeRow.Id)); - var combinationEquipmentAction = new CombinationEquipment16 - { - avatarAddress = _avatarAddress, - slotIndex = 0, - recipeId = recipeRow.Id, - subRecipeId = subRecipeRow.Id, - }; - - var inventoryValue = _initialState.GetState(_inventoryAddress); - Assert.NotNull(inventoryValue); - - var inventoryState = new Inventory((List)inventoryValue); - inventoryState.AddFungibleItem( - ItemFactory.CreateMaterial(_tableSheets.MaterialItemSheet, recipeRow.MaterialId), - recipeRow.MaterialCount); - foreach (var materialInfo in subRecipeRow.Materials) - { - inventoryState.AddFungibleItem( - ItemFactory.CreateMaterial(_tableSheets.MaterialItemSheet, materialInfo.Id), - materialInfo.Count); - } - - var worldInformation = new WorldInformation( - 0, - _tableSheets.WorldSheet, - recipeRow.UnlockStage); - - var unlockedRecipeIdsAddress = _avatarAddress.Derive("recipe_ids"); - var recipeIds = List.Empty; - for (int i = 1; i < recipeRow.UnlockStage + 1; i++) - { - recipeIds = recipeIds.Add(i.Serialize()); - } - - var nextState = _initialState - .SetState(unlockedRecipeIdsAddress, recipeIds) - .SetState(_inventoryAddress, inventoryState.Serialize()) - .SetState(_worldInformationAddress, worldInformation.Serialize()); - - var random = new TestRandom(randomSeed); - nextState = combinationEquipmentAction.Execute(new ActionContext - { - PreviousState = nextState, - BlockIndex = 0, - Random = random, - Signer = _agentAddress, - }); - - var slot0Value = nextState.GetState(_slot0Address); - Assert.NotNull(slot0Value); - - var slot0State = new CombinationSlotState((Dictionary)slot0Value); - Assert.NotNull(slot0State.Result.itemUsable); - - var equipment = (Equipment)slot0State.Result.itemUsable; - var additionalStats = equipment.StatsMap - .GetAdditionalStats(true) - .ToArray(); - var skills = equipment.Skills; - Assert.Equal(optionNumbers.Length, equipment.optionCountFromCombination); - - var optionSheet = _tableSheets.EquipmentItemOptionSheet; - var mainAdditionalStatMin = 0; - var mainAdditionalStatMax = 0; - var requiredBlockIndex = recipeRow.RequiredBlockIndex + subRecipeRow.RequiredBlockIndex; - var orderedOptions = subRecipeRow.Options - .OrderByDescending(e => e.Ratio) - .ThenBy(e => e.RequiredBlockIndex) - .ThenBy(e => e.Id) - .ToArray(); - foreach (var optionNumber in optionNumbers) - { - var optionInfo = orderedOptions[optionNumber - 1]; - requiredBlockIndex += optionInfo.RequiredBlockIndex; - var optionRow = optionSheet[optionInfo.Id]; - if (optionRow.StatMin > 0 || optionRow.StatMax > 0) - { - if (optionRow.StatType == equipment.UniqueStatType) - { - mainAdditionalStatMin += optionRow.StatMin; - mainAdditionalStatMax += optionRow.StatMax; - continue; - } - - var additionalStatValue = additionalStats - .First(e => e.statType == optionRow.StatType) - .additionalValue; - Assert.True(additionalStatValue >= optionRow.StatMin); - Assert.True(additionalStatValue <= optionRow.StatMax + 1); - } - else if (optionRow.SkillId != default) - { - var skill = skills.First(e => e.SkillRow.Id == optionRow.SkillId); - Assert.True(skill.Chance >= optionRow.SkillChanceMin); - Assert.True(skill.Chance <= optionRow.SkillChanceMax + 1); - Assert.True(skill.Power >= optionRow.SkillDamageMin); - Assert.True(skill.Power <= optionRow.SkillDamageMax + 1); - } - } - - var mainAdditionalStatValue = additionalStats - .First(e => e.statType == equipment.UniqueStatType) - .additionalValue; - Assert.True(mainAdditionalStatValue >= mainAdditionalStatMin); - Assert.True(mainAdditionalStatValue <= mainAdditionalStatMax + 1); - Assert.Equal(requiredBlockIndex, slot0State.RequiredBlockIndex); - - if (requiredBlockIndex == 0) - { - return; - } - - var hourglassRow = _tableSheets.MaterialItemSheet - .First(pair => pair.Value.ItemSubType == ItemSubType.Hourglass) - .Value; - - inventoryValue = nextState.GetState(_inventoryAddress); - Assert.NotNull(inventoryValue); - inventoryState = new Inventory((List)inventoryValue); - Assert.False(inventoryState.TryGetFungibleItems(hourglassRow.ItemId, out _)); - - var diff = slot0State.RequiredBlockIndex - GameConfig.RequiredAppraiseBlock; - var hourglassCount = RapidCombination0.CalculateHourglassCount(gameConfigState, diff); - inventoryState.AddFungibleItem( - ItemFactory.CreateMaterial(_tableSheets.MaterialItemSheet, hourglassRow.Id), - hourglassCount); - Assert.True(inventoryState.TryGetFungibleItems(hourglassRow.ItemId, out var hourglasses)); - Assert.Equal(hourglassCount, hourglasses.Sum(e => e.count)); - nextState = nextState.SetState(_inventoryAddress, inventoryState.Serialize()); - - var rapidCombinationAction = new RapidCombination8 - { - avatarAddress = _avatarAddress, - slotIndex = 0, - }; - - nextState = rapidCombinationAction.Execute(new ActionContext - { - PreviousState = nextState, - BlockIndex = GameConfig.RequiredAppraiseBlock, - Random = random, - Signer = _agentAddress, - }); - inventoryValue = nextState.GetState(_inventoryAddress); - Assert.NotNull(inventoryValue); - inventoryState = new Inventory((List)inventoryValue); - Assert.False(inventoryState.TryGetFungibleItems(hourglassRow.ItemId, out _)); - } - } -} diff --git a/.Lib9c.Tests/Action/Scenario/ItemCraftTest.cs b/.Lib9c.Tests/Action/Scenario/ItemCraftTest.cs index c1bcf4a79f..22dfef383e 100644 --- a/.Lib9c.Tests/Action/Scenario/ItemCraftTest.cs +++ b/.Lib9c.Tests/Action/Scenario/ItemCraftTest.cs @@ -9,6 +9,7 @@ namespace Lib9c.Tests.Action.Scenario using System.Collections.Generic; using System.Linq; using Bencodex.Types; + using Lib9c.Tests.Fixtures.TableCSV.Item; using Lib9c.Tests.Util; using Libplanet.Action.State; using Libplanet.Crypto; @@ -38,7 +39,18 @@ public ItemCraftTest() _avatarAddr, _initialStatesWithAvatarStateV1, _initialStatesWithAvatarStateV2 - ) = InitializeUtil.InitializeStates(); + ) = InitializeUtil.InitializeStates( + sheetsOverride: new Dictionary + { + { + "EquipmentItemRecipeSheet", + EquipmentItemRecipeSheetFixtures.Default + }, + { + "EquipmentItemSubRecipeSheetV2", + EquipmentItemSubRecipeSheetFixtures.V2 + }, + }); _inventoryAddr = _avatarAddr.Derive(LegacyInventoryKey); _worldInformationAddr = _avatarAddr.Derive(LegacyWorldInformationKey); } @@ -130,7 +142,7 @@ public void CraftEquipmentTest(int randomSeed, int[] targetItemIdList) PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = randomSeed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); // TEST: requiredBlock @@ -217,7 +229,7 @@ public void CraftConsumableTest(int randomSeed, int[] targetItemIdList) PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = randomSeed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); // TEST: requiredBlockIndex @@ -301,7 +313,7 @@ int[] targetItemIdList PreviousState = stateV2, Signer = _agentAddr, BlockIndex = eventRow.StartBlockIndex, - Random = random, + RandomSeed = randomSeed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); // TEST: requiredBlockIndex @@ -399,7 +411,7 @@ int[] targetItemIdList PreviousState = stateV2, Signer = _agentAddr, BlockIndex = eventRow.StartBlockIndex, - Random = random, + RandomSeed = randomSeed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); // TEST: requiredBlockIndex diff --git a/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs index 58275cd63c..70f3d3f843 100644 --- a/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/MarketScenarioTest.cs @@ -102,7 +102,7 @@ public MarketScenarioTest(ITestOutputHelper outputHelper) agentState3.avatarAddresses[0] = _buyerAvatarAddress; _currency = Currency.Legacy("NCG", 2, minters: null); - _initialState = new Tests.Action.MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, new GoldCurrencyState(_currency).Serialize()) .SetState(Addresses.GameConfig, _gameConfigState.Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.MaterialItemSheet.Serialize()) @@ -157,13 +157,15 @@ public void Register_And_Buy() }, }, }; - var nextState = action.Execute(new ActionContext + + var ctx = new ActionContext { BlockIndex = 1L, PreviousState = _initialState, - Random = random, Signer = _sellerAgentAddress, - }); + }; + ctx.SetRandom(random); + var nextState = action.Execute(ctx); var nextAvatarState = nextState.GetAvatarStateV2(_sellerAvatarAddress); Assert.Empty(nextAvatarState.inventory.Items); Assert.Equal(_gameConfigState.ActionPointMax - RegisterProduct2.CostAp, nextAvatarState.actionPoint); @@ -231,13 +233,14 @@ public void Register_And_Buy() }, }, }; - var nextState2 = action2.Execute(new ActionContext + ctx = new ActionContext { BlockIndex = 2L, PreviousState = nextState, - Random = random, Signer = _sellerAgentAddress2, - }); + }; + ctx.SetRandom(random); + var nextState2 = action2.Execute(ctx); var nextAvatarState2 = nextState2.GetAvatarStateV2(_sellerAvatarAddress2); Assert.Empty(nextAvatarState2.inventory.Items); Assert.Equal(_gameConfigState.ActionPointMax - RegisterProduct2.CostAp, nextAvatarState2.actionPoint); @@ -289,13 +292,14 @@ public void Register_And_Buy() ProductInfos = productInfoList, }; - var latestState = action3.Execute(new ActionContext + ctx = new ActionContext { BlockIndex = 3L, PreviousState = nextState2, - Random = random, Signer = _buyerAgentAddress, - }); + }; + ctx.SetRandom(random); + var latestState = action3.Execute(ctx); var buyerAvatarState = latestState.GetAvatarStateV2(_buyerAvatarAddress); var arenaData = _tableSheets.ArenaSheet.GetRoundByBlockIndex(3L); @@ -392,7 +396,7 @@ public void Register_And_Cancel() { BlockIndex = 1L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _sellerAgentAddress, }); @@ -480,7 +484,7 @@ public void Register_And_Cancel() { BlockIndex = 2L, PreviousState = nextState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _sellerAgentAddress, }); @@ -564,7 +568,7 @@ public void Register_And_ReRegister() { BlockIndex = 1L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _sellerAgentAddress, }); @@ -684,13 +688,14 @@ public void Register_And_ReRegister() ), }, }; - var latestState = action2.Execute(new ActionContext + var ctx = new ActionContext { BlockIndex = 2L, PreviousState = nextState, - Random = random, Signer = _sellerAgentAddress, - }); + }; + ctx.SetRandom(random); + var latestState = action2.Execute(ctx); var latestAvatarState = latestState.GetAvatarStateV2(_sellerAvatarAddress); Assert.Equal(_gameConfigState.ActionPointMax - RegisterProduct2.CostAp - ReRegisterProduct.CostAp, latestAvatarState.actionPoint); @@ -809,7 +814,7 @@ public void ReRegister_Order() { BlockIndex = 2L, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _sellerAgentAddress, }); @@ -892,7 +897,7 @@ public void HardFork() { BlockIndex = 1L, PreviousState = _initialState, - Random = random, + RandomSeed = random.Seed, Signer = _sellerAgentAddress, }); Guid fungibleProductId = default; @@ -969,7 +974,7 @@ public void HardFork() { BlockIndex = 2L, PreviousState = nextState, - Random = random, + RandomSeed = random.Seed, Signer = _sellerAgentAddress, }); var avatarState = canceledState.GetAvatarStateV2(_sellerAvatarAddress); @@ -1052,7 +1057,7 @@ public void HardFork() { BlockIndex = 2L, PreviousState = nextState, - Random = random, + RandomSeed = random.Seed, Signer = _sellerAgentAddress, })); @@ -1067,7 +1072,7 @@ public void HardFork() { BlockIndex = 3L, PreviousState = nextState, - Random = random, + RandomSeed = random.Seed, Signer = _buyerAgentAddress, }); diff --git a/.Lib9c.Tests/Action/Scenario/MeadScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/MeadScenarioTest.cs index ee91aca9e0..45ad143a2e 100644 --- a/.Lib9c.Tests/Action/Scenario/MeadScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/MeadScenarioTest.cs @@ -19,7 +19,7 @@ public void Contract() Currency mead = Currencies.Mead; var patron = new PrivateKey().ToAddress(); IActionContext context = new ActionContext(); - IAccount states = new MockStateDelta().MintAsset(context, patron, 10 * mead); + IAccount states = new Account(MockState.Empty).MintAsset(context, patron, 10 * mead); var agentAddress = new PrivateKey().ToAddress(); var requestPledge = new RequestPledge @@ -84,7 +84,7 @@ bool IsTarget(Type type) var action = (IAction)Activator.CreateInstance(typeId)!; var actionContext = new ActionContext { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), }; try { diff --git a/.Lib9c.Tests/Action/Scenario/Pet/AdditionalOptionRateByFixedValueTest.cs b/.Lib9c.Tests/Action/Scenario/Pet/AdditionalOptionRateByFixedValueTest.cs index 366f4f8aec..ec4ea6e260 100644 --- a/.Lib9c.Tests/Action/Scenario/Pet/AdditionalOptionRateByFixedValueTest.cs +++ b/.Lib9c.Tests/Action/Scenario/Pet/AdditionalOptionRateByFixedValueTest.cs @@ -13,6 +13,7 @@ namespace Lib9c.Tests.Action.Scenario.Pet using Nekoyume.Model.Pet; using Nekoyume.Model.State; using Nekoyume.TableData; + using Nekoyume.TableData.Pet; using Xunit; using Xunit.Abstractions; using static Lib9c.SerializeKeys; @@ -34,8 +35,130 @@ private const PetOptionType PetOptionType public AdditionalOptionRateByFixedValueTest() { + var sheets = TableSheetsImporter.ImportSheets(); + sheets[nameof(PetOptionSheet)] = @"ID,_PET NAME,PetLevel,OptionType,OptionValue +1001,D:CC 블랙캣,1,ReduceRequiredBlock,5.5 +1001,D:CC 블랙캣,2,ReduceRequiredBlock,6 +1001,D:CC 블랙캣,3,ReduceRequiredBlock,6.5 +1001,D:CC 블랙캣,4,ReduceRequiredBlock,7 +1001,D:CC 블랙캣,5,ReduceRequiredBlock,7.5 +1001,D:CC 블랙캣,6,ReduceRequiredBlock,8 +1001,D:CC 블랙캣,7,ReduceRequiredBlock,8.5 +1001,D:CC 블랙캣,8,ReduceRequiredBlock,9 +1001,D:CC 블랙캣,9,ReduceRequiredBlock,9.5 +1001,D:CC 블랙캣,10,ReduceRequiredBlock,10 +1001,D:CC 블랙캣,11,ReduceRequiredBlock,10.5 +1001,D:CC 블랙캣,12,ReduceRequiredBlock,11 +1001,D:CC 블랙캣,13,ReduceRequiredBlock,11.5 +1001,D:CC 블랙캣,14,ReduceRequiredBlock,12 +1001,D:CC 블랙캣,15,ReduceRequiredBlock,12.5 +1001,D:CC 블랙캣,16,ReduceRequiredBlock,13 +1001,D:CC 블랙캣,17,ReduceRequiredBlock,13.5 +1001,D:CC 블랙캣,18,ReduceRequiredBlock,14 +1001,D:CC 블랙캣,19,ReduceRequiredBlock,14.5 +1001,D:CC 블랙캣,20,ReduceRequiredBlock,15 +1001,D:CC 블랙캣,21,ReduceRequiredBlock,15.5 +1001,D:CC 블랙캣,22,ReduceRequiredBlock,16 +1001,D:CC 블랙캣,23,ReduceRequiredBlock,16.5 +1001,D:CC 블랙캣,24,ReduceRequiredBlock,17 +1001,D:CC 블랙캣,25,ReduceRequiredBlock,17.5 +1001,D:CC 블랙캣,26,ReduceRequiredBlock,18 +1001,D:CC 블랙캣,27,ReduceRequiredBlock,18.5 +1001,D:CC 블랙캣,28,ReduceRequiredBlock,19 +1001,D:CC 블랙캣,29,ReduceRequiredBlock,19.5 +1001,D:CC 블랙캣,30,ReduceRequiredBlock,20 +1002,빨간 동글이,1,DiscountMaterialCostCrystal,2.5 +1002,빨간 동글이,2,DiscountMaterialCostCrystal,3 +1002,빨간 동글이,3,DiscountMaterialCostCrystal,3.5 +1002,빨간 동글이,4,DiscountMaterialCostCrystal,4 +1002,빨간 동글이,5,DiscountMaterialCostCrystal,4.5 +1002,빨간 동글이,6,DiscountMaterialCostCrystal,5 +1002,빨간 동글이,7,DiscountMaterialCostCrystal,5.5 +1002,빨간 동글이,8,DiscountMaterialCostCrystal,6 +1002,빨간 동글이,9,DiscountMaterialCostCrystal,6.5 +1002,빨간 동글이,10,DiscountMaterialCostCrystal,7 +1002,빨간 동글이,11,DiscountMaterialCostCrystal,7.5 +1002,빨간 동글이,12,DiscountMaterialCostCrystal,8 +1002,빨간 동글이,13,DiscountMaterialCostCrystal,8.5 +1002,빨간 동글이,14,DiscountMaterialCostCrystal,9 +1002,빨간 동글이,15,DiscountMaterialCostCrystal,9.5 +1002,빨간 동글이,16,DiscountMaterialCostCrystal,10 +1002,빨간 동글이,17,DiscountMaterialCostCrystal,10.5 +1002,빨간 동글이,18,DiscountMaterialCostCrystal,11 +1002,빨간 동글이,19,DiscountMaterialCostCrystal,11.5 +1002,빨간 동글이,20,DiscountMaterialCostCrystal,12 +1002,빨간 동글이,21,DiscountMaterialCostCrystal,12.5 +1002,빨간 동글이,22,DiscountMaterialCostCrystal,13 +1002,빨간 동글이,23,DiscountMaterialCostCrystal,13.5 +1002,빨간 동글이,24,DiscountMaterialCostCrystal,14 +1002,빨간 동글이,25,DiscountMaterialCostCrystal,14.5 +1002,빨간 동글이,26,DiscountMaterialCostCrystal,15 +1002,빨간 동글이,27,DiscountMaterialCostCrystal,15.5 +1002,빨간 동글이,28,DiscountMaterialCostCrystal,16 +1002,빨간 동글이,29,DiscountMaterialCostCrystal,16.5 +1002,빨간 동글이,30,DiscountMaterialCostCrystal,17 +1003,빛의 발키리,1,IncreaseBlockPerHourglass,1 +1003,빛의 발키리,2,IncreaseBlockPerHourglass,2 +1003,빛의 발키리,3,IncreaseBlockPerHourglass,3 +1003,빛의 발키리,4,IncreaseBlockPerHourglass,4 +1003,빛의 발키리,5,IncreaseBlockPerHourglass,5 +1003,빛의 발키리,6,IncreaseBlockPerHourglass,6 +1003,빛의 발키리,7,IncreaseBlockPerHourglass,7 +1003,빛의 발키리,8,IncreaseBlockPerHourglass,8 +1003,빛의 발키리,9,IncreaseBlockPerHourglass,9 +1003,빛의 발키리,10,IncreaseBlockPerHourglass,10 +1003,빛의 발키리,11,IncreaseBlockPerHourglass,11 +1003,빛의 발키리,12,IncreaseBlockPerHourglass,12 +1003,빛의 발키리,13,IncreaseBlockPerHourglass,13 +1003,빛의 발키리,14,IncreaseBlockPerHourglass,14 +1003,빛의 발키리,15,IncreaseBlockPerHourglass,15 +1003,빛의 발키리,16,IncreaseBlockPerHourglass,16 +1003,빛의 발키리,17,IncreaseBlockPerHourglass,17 +1003,빛의 발키리,18,IncreaseBlockPerHourglass,18 +1003,빛의 발키리,19,IncreaseBlockPerHourglass,19 +1003,빛의 발키리,20,IncreaseBlockPerHourglass,20 +1003,빛의 발키리,21,IncreaseBlockPerHourglass,21 +1003,빛의 발키리,22,IncreaseBlockPerHourglass,22 +1003,빛의 발키리,23,IncreaseBlockPerHourglass,23 +1003,빛의 발키리,24,IncreaseBlockPerHourglass,24 +1003,빛의 발키리,25,IncreaseBlockPerHourglass,25 +1003,빛의 발키리,26,IncreaseBlockPerHourglass,26 +1003,빛의 발키리,27,IncreaseBlockPerHourglass,27 +1003,빛의 발키리,28,IncreaseBlockPerHourglass,28 +1003,빛의 발키리,29,IncreaseBlockPerHourglass,29 +1003,빛의 발키리,30,IncreaseBlockPerHourglass,30 +1004,꼬마 펜리르,1,AdditionalOptionRateByFixedValue,5.5 +1004,꼬마 펜리르,2,AdditionalOptionRateByFixedValue,6 +1004,꼬마 펜리르,3,AdditionalOptionRateByFixedValue,6.5 +1004,꼬마 펜리르,4,AdditionalOptionRateByFixedValue,7 +1004,꼬마 펜리르,5,AdditionalOptionRateByFixedValue,7.5 +1004,꼬마 펜리르,6,AdditionalOptionRateByFixedValue,8 +1004,꼬마 펜리르,7,AdditionalOptionRateByFixedValue,8.5 +1004,꼬마 펜리르,8,AdditionalOptionRateByFixedValue,9 +1004,꼬마 펜리르,9,AdditionalOptionRateByFixedValue,9.5 +1004,꼬마 펜리르,10,AdditionalOptionRateByFixedValue,10 +1004,꼬마 펜리르,11,AdditionalOptionRateByFixedValue,10.5 +1004,꼬마 펜리르,12,AdditionalOptionRateByFixedValue,11 +1004,꼬마 펜리르,13,AdditionalOptionRateByFixedValue,11.5 +1004,꼬마 펜리르,14,AdditionalOptionRateByFixedValue,12 +1004,꼬마 펜리르,15,AdditionalOptionRateByFixedValue,12.5 +1004,꼬마 펜리르,16,AdditionalOptionRateByFixedValue,13 +1004,꼬마 펜리르,17,AdditionalOptionRateByFixedValue,13.5 +1004,꼬마 펜리르,18,AdditionalOptionRateByFixedValue,14 +1004,꼬마 펜리르,19,AdditionalOptionRateByFixedValue,14.5 +1004,꼬마 펜리르,20,AdditionalOptionRateByFixedValue,15 +1004,꼬마 펜리르,21,AdditionalOptionRateByFixedValue,15.5 +1004,꼬마 펜리르,22,AdditionalOptionRateByFixedValue,16 +1004,꼬마 펜리르,23,AdditionalOptionRateByFixedValue,16.5 +1004,꼬마 펜리르,24,AdditionalOptionRateByFixedValue,17 +1004,꼬마 펜리르,25,AdditionalOptionRateByFixedValue,17.5 +1004,꼬마 펜리르,26,AdditionalOptionRateByFixedValue,18 +1004,꼬마 펜리르,27,AdditionalOptionRateByFixedValue,18.5 +1004,꼬마 펜리르,28,AdditionalOptionRateByFixedValue,19 +1004,꼬마 펜리르,29,AdditionalOptionRateByFixedValue,19.5 +1004,꼬마 펜리르,30,AdditionalOptionRateByFixedValue,20"; (_tableSheets, _agentAddr, _avatarAddr, _initialStateV1, _initialStateV2) - = InitializeUtil.InitializeStates(); + = InitializeUtil.InitializeStates(sheetsOverride: sheets); _inventoryAddr = _avatarAddr.Derive(LegacyInventoryKey); _worldInfoAddr = _avatarAddr.Derive(LegacyWorldInformationKey); _recipeAddr = _avatarAddr.Derive("recipe_ids"); @@ -124,13 +247,14 @@ int petLevel recipeId = recipe.Id, subRecipeId = recipe.SubRecipeIds?[1], }; - stateV2 = action.Execute(new ActionContext + var ctx = new ActionContext { PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, - }); + }; + ctx.SetRandom(random); + stateV2 = action.Execute(ctx); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, 0); // TEST: No additional option added (1 star) Assert.Equal( @@ -164,13 +288,14 @@ int petLevel subRecipeId = recipe.SubRecipeIds?[1], petId = _petId, }; - stateV2 = petAction.Execute(new ActionContext + ctx = new ActionContext { PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, - }); + }; + ctx.SetRandom(random); + stateV2 = petAction.Execute(ctx); var petSlotState = stateV2.GetCombinationSlotState(_avatarAddr, 1); // TEST: One additional option added (2 star) Assert.Equal( diff --git a/.Lib9c.Tests/Action/Scenario/Pet/CommonTest.cs b/.Lib9c.Tests/Action/Scenario/Pet/CommonTest.cs index 7209d4e657..670a259678 100644 --- a/.Lib9c.Tests/Action/Scenario/Pet/CommonTest.cs +++ b/.Lib9c.Tests/Action/Scenario/Pet/CommonTest.cs @@ -32,22 +32,6 @@ public CommonTest() _worldInfoAddr = _avatarAddr.Derive(LegacyWorldInformationKey); } - // Pet level range test (1~30) - [Theory] - [InlineData(0)] // Min. level of pet is 1 - [InlineData(31)] // Max. level of pet is 30 - public void PetLevelRangeTest(int petLevel) - { - foreach (var petOptionType in Enum.GetValues()) - { - Assert.Throws( - () => _tableSheets.PetOptionSheet.Values.First( - pet => pet.LevelOptionMap[petLevel].OptionType == petOptionType - ) - ); - } - } - // You cannot use one pet to the multiple slots at the same time [Fact] public void PetCannotBeUsedToTwoSlotsAtTheSameTime() @@ -117,7 +101,7 @@ public void PetCannotBeUsedToTwoSlotsAtTheSameTime() PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = random.Seed, }); // Combination2: Raises error @@ -135,7 +119,7 @@ public void PetCannotBeUsedToTwoSlotsAtTheSameTime() PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 1L, - Random = random, + RandomSeed = random.Seed, }) ); } diff --git a/.Lib9c.Tests/Action/Scenario/Pet/DiscountMaterialCostCrystalTest.cs b/.Lib9c.Tests/Action/Scenario/Pet/DiscountMaterialCostCrystalTest.cs index 6c9302a09d..e506c96fec 100644 --- a/.Lib9c.Tests/Action/Scenario/Pet/DiscountMaterialCostCrystalTest.cs +++ b/.Lib9c.Tests/Action/Scenario/Pet/DiscountMaterialCostCrystalTest.cs @@ -129,7 +129,7 @@ public void CraftEquipmentTest( PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = random.Seed, }); // TEST: All given crystals are used diff --git a/.Lib9c.Tests/Action/Scenario/Pet/IncreaseBlockPerHourglassTest.cs b/.Lib9c.Tests/Action/Scenario/Pet/IncreaseBlockPerHourglassTest.cs index e519af41b0..aff3856807 100644 --- a/.Lib9c.Tests/Action/Scenario/Pet/IncreaseBlockPerHourglassTest.cs +++ b/.Lib9c.Tests/Action/Scenario/Pet/IncreaseBlockPerHourglassTest.cs @@ -52,13 +52,13 @@ public IncreaseBlockPerHourglassTest() } [Theory] - [InlineData(1, 10113000, null)] // No Pet - [InlineData(1, 10113000, 1)] // Lv.1 increases 1 block per HG: 3 -> 4 - [InlineData(1, 10113000, 30)] // Lv.30 increases 30 blocks per HG: 3 -> 33 - [InlineData(1, 10120000, 30)] // Test for min. Hourglass is 1 + [InlineData(1, 155, null)] // No Pet + [InlineData(1, 155, 1)] // Lv.1 increases 1 block per HG: 3 -> 4 + [InlineData(1, 155, 30)] // Lv.30 increases 30 blocks per HG: 3 -> 33 + [InlineData(1, 37, 30)] // Test for min. Hourglass is 1 public void RapidCombinationTest_Equipment( int randomSeed, - int targetItemId, + int requiredBlock, int? petLevel ) { @@ -74,7 +74,7 @@ public void RapidCombinationTest_Equipment( // Get recipe var recipe = _tableSheets.EquipmentItemRecipeSheet.Values.First( - recipe => recipe.ResultEquipmentId == targetItemId + recipe => recipe.RequiredBlockIndex >= requiredBlock ); Assert.NotNull(recipe); @@ -154,7 +154,7 @@ public void RapidCombinationTest_Equipment( avatarAddress = _avatarAddr, slotIndex = 0, recipeId = recipe.Id, - subRecipeId = recipe.SubRecipeIds?[0], + subRecipeId = null, petId = _petId, }; @@ -163,7 +163,7 @@ public void RapidCombinationTest_Equipment( PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = random.Seed, }); // Do rapid combination @@ -177,7 +177,7 @@ public void RapidCombinationTest_Equipment( PreviousState = stateV2, Signer = _agentAddr, BlockIndex = stateV2.GetGameConfigState().RequiredAppraiseBlock, - Random = random, + RandomSeed = random.Seed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, 0); @@ -189,7 +189,6 @@ public void RapidCombinationTest_Equipment( // TEST: All Hourglasses should be used var inventoryState = new Inventory((List)stateV2.GetState(_inventoryAddr)); - Assert.Equal(1, inventoryState.Items.Count); Assert.Throws(() => inventoryState.Items.First(item => item.item.Id == _hourglassItemId)); } diff --git a/.Lib9c.Tests/Action/Scenario/Pet/ReduceRequiredBlockTest.cs b/.Lib9c.Tests/Action/Scenario/Pet/ReduceRequiredBlockTest.cs index ff22a793ad..8d7357dbdd 100644 --- a/.Lib9c.Tests/Action/Scenario/Pet/ReduceRequiredBlockTest.cs +++ b/.Lib9c.Tests/Action/Scenario/Pet/ReduceRequiredBlockTest.cs @@ -43,14 +43,14 @@ public ReduceRequiredBlockTest() } [Theory] - [InlineData(10114000, null)] // No Pet - [InlineData(10114000, 1)] // Lv.1 reduces 5.5% - [InlineData(10114000, 30)] // Lv.30 reduces 20% + [InlineData(null)] // No Pet + [InlineData(1)] // Lv.1 reduces 5.5% + [InlineData(30)] // Lv.30 reduces 20% public void CombinationEquipmentTest( - int targetItemId, int? petLevel ) { + int targetItemId = 10114000; var random = new TestRandom(); // Get Recipe @@ -109,7 +109,7 @@ public void CombinationEquipmentTest( avatarAddress = _avatarAddr, slotIndex = 0, recipeId = recipe.Id, - subRecipeId = recipe.SubRecipeIds?[0], + subRecipeId = null, petId = _petId, }; @@ -118,7 +118,7 @@ public void CombinationEquipmentTest( PreviousState = stateV2, Signer = _agentAddr, BlockIndex = 0L, - Random = random, + RandomSeed = random.Seed, }); var slotState = stateV2.GetCombinationSlotState(_avatarAddr, 0); diff --git a/.Lib9c.Tests/Action/Scenario/RapidCombinationTest.cs b/.Lib9c.Tests/Action/Scenario/RapidCombinationTest.cs deleted file mode 100644 index cd6334b6f9..0000000000 --- a/.Lib9c.Tests/Action/Scenario/RapidCombinationTest.cs +++ /dev/null @@ -1,192 +0,0 @@ -namespace Lib9c.Tests.Action.Scenario -{ - using System; - using System.Collections.Generic; - using System.Linq; - using Bencodex.Types; - using Lib9c.Tests.Util; - using Libplanet.Action.State; - using Libplanet.Crypto; - using Nekoyume.Action; - using Nekoyume.Model.EnumType; - using Nekoyume.Model.Item; - using Nekoyume.Model.State; - using Nekoyume.TableData; - using Xunit; - using static Lib9c.SerializeKeys; - - public class RapidCombinationTest - { - private readonly Address _agentAddr; - private readonly Address _avatarAddr; - private readonly Address _inventoryAddr; - private readonly Address _worldInformationAddr; - private readonly IAccount _initialStatesWithAvatarStateV1; - private readonly IAccount _initialStatesWithAvatarStateV2; - private readonly TableSheets _tableSheets; - private readonly int _hourGlassItemId; - - public RapidCombinationTest() - { - ( - _tableSheets, - _agentAddr, - _avatarAddr, - _initialStatesWithAvatarStateV1, - _initialStatesWithAvatarStateV2 - ) = InitializeUtil.InitializeStates(); - _inventoryAddr = _avatarAddr.Derive(LegacyInventoryKey); - _worldInformationAddr = _avatarAddr.Derive(LegacyWorldInformationKey); - _hourGlassItemId = _tableSheets.MaterialItemSheet.OrderedList.First( - e => e.ItemSubType == ItemSubType.Hourglass - ).Id; - } - - [Theory] - // 롱 소드(땅) : (155-10)/3 = 48.3 - [InlineData(1, new[] { 10113000 }, 49)] - // 롱 소드(땅) : (155-10)/3 = 48.3 - // 롱 소드(바람) : (477-10)/3 = 155.6 - [InlineData(1, new[] { 10113000, 10114000 }, 205)] - public void RapidCombine_Equipment( - int randomSeed, - int[] targetItemIdList, - int expectedHourGlassCount - ) - { - // Disable all quests to prevent contamination by quest reward - var (stateV1, stateV2) = QuestUtil.DisableQuestList( - _initialStatesWithAvatarStateV1, - _initialStatesWithAvatarStateV2, - _avatarAddr - ); - - // Setup requirements - var random = new TestRandom(randomSeed); - var recipeList = _tableSheets.EquipmentItemRecipeSheet.OrderedList.Where( - recipe => targetItemIdList.Contains(recipe.ResultEquipmentId) - ).ToList(); - List allMaterialList = - new List(); - foreach (var recipe in recipeList) - { - allMaterialList = allMaterialList - .Concat(recipe.GetAllMaterials( - _tableSheets.EquipmentItemSubRecipeSheetV2, - CraftType.Normal - )) - .ToList(); - } - - // Unlock recipe - var maxUnlockStage = recipeList.Aggregate(0, (e, c) => Math.Max(e, c.UnlockStage)); - var unlockRecipeIdsAddress = _avatarAddr.Derive("recipe_ids"); - var recipeIds = List.Empty; - for (int i = 1; i < maxUnlockStage + 1; i++) - { - recipeIds = recipeIds.Add(i.Serialize()); - } - - stateV2 = stateV2.SetState(unlockRecipeIdsAddress, recipeIds); - - // Prepare combination slot - for (var i = 0; i < targetItemIdList.Length; i++) - { - stateV2 = CraftUtil.PrepareCombinationSlot(stateV2, _avatarAddr, i); - } - - // Initial inventory must be empty - var inventoryState = new Inventory((List)stateV2.GetState(_inventoryAddr)); - Assert.Equal(0, inventoryState.Items.Count); - - // Add materials to inventory - stateV2 = CraftUtil.AddMaterialsToInventory( - stateV2, - _tableSheets, - _avatarAddr, - allMaterialList, - random - ); - - // Give HourGlasses to execute RapidCombination - stateV2 = CraftUtil.AddMaterialsToInventory( - stateV2, - _tableSheets, - _avatarAddr, - new List - { - new EquipmentItemSubRecipeSheet.MaterialInfo( - _hourGlassItemId, - expectedHourGlassCount - ), - }, - random - ); - - for (var i = 0; i < recipeList.Count; i++) - { - // Unlock stage - var equipmentRecipe = recipeList[i]; - stateV2 = CraftUtil.UnlockStage( - stateV2, - _tableSheets, - _worldInformationAddr, - equipmentRecipe.UnlockStage - ); - - // Do combination action - var recipe = recipeList[i]; - var action = new CombinationEquipment16 - { - avatarAddress = _avatarAddr, - slotIndex = i, - recipeId = recipe.Id, - subRecipeId = recipe.SubRecipeIds?[0], - }; - - stateV2 = action.Execute(new ActionContext - { - PreviousState = stateV2, - Signer = _agentAddr, - BlockIndex = 0L, - Random = random, - }); - - var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); - // TEST: requiredBlock - // TODO: Check reduced required block when pet comes in - Assert.Equal(recipe.RequiredBlockIndex, slotState.RequiredBlockIndex); - } - - // Do RapidCombination - for (var i = 0; i < recipeList.Count; i++) - { - var action = new RapidCombination9 - { - avatarAddress = _avatarAddr, - slotIndex = i, - }; - stateV2 = action.Execute(new ActionContext - { - PreviousState = stateV2, - Signer = _agentAddr, - BlockIndex = stateV2.GetGameConfigState().RequiredAppraiseBlock, - Random = random, - }); - - var slotState = stateV2.GetCombinationSlotState(_avatarAddr, i); - // TEST: requiredBlockIndex should be 10, a RequiredAppraiseBlock - Assert.Equal(10, slotState.RequiredBlockIndex); - } - - // TEST: Only created items should remain in inventory - // TEST: All HourGlasses are used - inventoryState = new Inventory((List)stateV2.GetState(_inventoryAddr)); - Assert.Equal(recipeList.Count, inventoryState.Items.Count); - foreach (var itemId in targetItemIdList) - { - Assert.NotNull(inventoryState.Items.Where(e => e.item.Id == itemId)); - } - } - } -} diff --git a/.Lib9c.Tests/Action/Scenario/RuneScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/RuneScenarioTest.cs index 6fd99485c7..694d31b12d 100644 --- a/.Lib9c.Tests/Action/Scenario/RuneScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/RuneScenarioTest.cs @@ -39,7 +39,7 @@ public void Craft_And_Equip() ); var context = new ActionContext(); - IAccount initialState = new Tests.Action.MockStateDelta() + IAccount initialState = new Account(MockState.Empty) .SetState(agentAddress, agentState.Serialize()) .SetState(avatarAddress, avatarState.SerializeV2()) .SetState( @@ -79,7 +79,7 @@ public void Craft_And_Equip() { BlockIndex = 1, PreviousState = initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = agentAddress, }); @@ -109,7 +109,7 @@ public void Craft_And_Equip() { BlockIndex = 2, PreviousState = state, - Random = new TestRandom(), + RandomSeed = 0, Signer = agentAddress, }); diff --git a/.Lib9c.Tests/Action/Scenario/SellAndCancellationAndSellTest.cs b/.Lib9c.Tests/Action/Scenario/SellAndCancellationAndSellTest.cs index ab301ef9a1..55dfd1d9cd 100644 --- a/.Lib9c.Tests/Action/Scenario/SellAndCancellationAndSellTest.cs +++ b/.Lib9c.Tests/Action/Scenario/SellAndCancellationAndSellTest.cs @@ -59,7 +59,7 @@ public SellAndCancellationAndSellTest(ITestOutputHelper outputHelper) GameConfig.RequireClearedStageLevel.ActionsInShop), }; - _initialState = new Tests.Action.MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, gold.Serialize()) .SetState(gameConfigState.address, gameConfigState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) @@ -113,7 +113,7 @@ public void Execute_With_TradableMaterial() Signer = _agentAddress, PreviousState = nextStates, BlockIndex = sellBlockIndex, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, }); // TODO: Check state.. inventory, orders.. @@ -141,7 +141,7 @@ public void Execute_With_TradableMaterial() Signer = _agentAddress, PreviousState = nextStates, BlockIndex = sellBlockIndex + 1L, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, }); // TODO: Check state.. inventory, orders.. @@ -162,7 +162,7 @@ public void Execute_With_TradableMaterial() Signer = _agentAddress, PreviousState = nextStates, BlockIndex = sellBlockIndex + 2L, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/Scenario/StakeAndClaimStakeReward2ScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/StakeAndClaimStakeReward2ScenarioTest.cs index f4173c3d59..c39785cc47 100644 --- a/.Lib9c.Tests/Action/Scenario/StakeAndClaimStakeReward2ScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/StakeAndClaimStakeReward2ScenarioTest.cs @@ -14,7 +14,6 @@ namespace Lib9c.Tests.Action.Scenario using Xunit; using Xunit.Abstractions; using static Lib9c.SerializeKeys; - using State = Lib9c.Tests.Action.MockStateDelta; public class StakeAndClaimStakeReward2ScenarioTest { @@ -32,7 +31,7 @@ public StakeAndClaimStakeReward2ScenarioTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new State(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); var sheet = @"level,required_gold,item_id,rate diff --git a/.Lib9c.Tests/Action/Scenario/WorldUnlockScenarioTest.cs b/.Lib9c.Tests/Action/Scenario/WorldUnlockScenarioTest.cs index 0da7610c1a..2b6d632135 100644 --- a/.Lib9c.Tests/Action/Scenario/WorldUnlockScenarioTest.cs +++ b/.Lib9c.Tests/Action/Scenario/WorldUnlockScenarioTest.cs @@ -49,7 +49,7 @@ public WorldUnlockScenarioTest() _weeklyArenaState = new WeeklyArenaState(0); - _initialState = new Lib9c.Tests.Action.MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_weeklyArenaState.address, _weeklyArenaState.Serialize()) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, avatarState.Serialize()) @@ -105,7 +105,7 @@ public void UnlockWorldByHackAndSlashAfterPatchTableWithAddRow( { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); Assert.True(hackAndSlash.Result.IsClear); @@ -137,7 +137,7 @@ public void UnlockWorldByHackAndSlashAfterPatchTableWithAddRow( { PreviousState = nextState, Signer = AdminState.Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -148,7 +148,7 @@ public void UnlockWorldByHackAndSlashAfterPatchTableWithAddRow( { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); Assert.True(hackAndSlash.Result.IsClear); @@ -227,7 +227,7 @@ public void UnlockWorldByMimisbrunnrBattleAfterPatchTableWithChangeRow( { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); }); @@ -247,7 +247,7 @@ public void UnlockWorldByMimisbrunnrBattleAfterPatchTableWithChangeRow( { PreviousState = nextState, Signer = AdminState.Address, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); @@ -258,7 +258,7 @@ public void UnlockWorldByMimisbrunnrBattleAfterPatchTableWithChangeRow( { PreviousState = nextState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Action/SecureMiningRewardTest.cs b/.Lib9c.Tests/Action/SecureMiningRewardTest.cs index 215b7e8edb..7e4c49c1da 100644 --- a/.Lib9c.Tests/Action/SecureMiningRewardTest.cs +++ b/.Lib9c.Tests/Action/SecureMiningRewardTest.cs @@ -33,7 +33,7 @@ public class SecureMiningRewardTest new Address("636d187B4d434244A92B65B06B5e7da14b3810A9"), }.ToImmutableList(); - private static readonly MockStateDelta _previousState = new MockStateDelta( + private static readonly IAccount _previousState = new Account( MockState.Empty .SetState(AdminState.Address, new AdminState(_admin, 100).Serialize()) .SetState(GoldCurrencyState.Address, new GoldCurrencyState(NCG).Serialize()) diff --git a/.Lib9c.Tests/Action/Sell0Test.cs b/.Lib9c.Tests/Action/Sell0Test.cs index 6ee65a8c7a..50dff16b74 100644 --- a/.Lib9c.Tests/Action/Sell0Test.cs +++ b/.Lib9c.Tests/Action/Sell0Test.cs @@ -30,7 +30,7 @@ public Sell0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -106,7 +106,7 @@ public void Execute() PreviousState = _initialState, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); var nextAvatarState = nextState.GetAvatarState(_avatarAddress); @@ -154,7 +154,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } diff --git a/.Lib9c.Tests/Action/Sell10Test.cs b/.Lib9c.Tests/Action/Sell10Test.cs index 162392eb97..a52c45926e 100644 --- a/.Lib9c.Tests/Action/Sell10Test.cs +++ b/.Lib9c.Tests/Action/Sell10Test.cs @@ -38,7 +38,7 @@ public Sell10Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -166,7 +166,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -255,7 +255,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -328,7 +328,7 @@ public void Execute_Throw_ItemDoesNotExistException(bool isLock) BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -359,7 +359,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -410,7 +410,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -442,7 +442,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Sell11Test.cs b/.Lib9c.Tests/Action/Sell11Test.cs index 74d6458ae7..b6dba51038 100644 --- a/.Lib9c.Tests/Action/Sell11Test.cs +++ b/.Lib9c.Tests/Action/Sell11Test.cs @@ -38,7 +38,7 @@ public Sell11Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -166,7 +166,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -303,7 +303,7 @@ public void Execute_Throw_InvalidOperationException_DueTo_EmptyState() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -376,7 +376,7 @@ public void Execute_Throw_ItemDoesNotExistException(bool isLock) BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -407,7 +407,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -458,7 +458,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -490,7 +490,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Sell2Test.cs b/.Lib9c.Tests/Action/Sell2Test.cs index cf48423f2c..b79719436b 100644 --- a/.Lib9c.Tests/Action/Sell2Test.cs +++ b/.Lib9c.Tests/Action/Sell2Test.cs @@ -30,7 +30,7 @@ public Sell2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -117,14 +117,15 @@ public void Execute() sellerAvatarAddress = _avatarAddress, }; - var nextState = sellAction.Execute(new ActionContext + var ctx = new ActionContext { BlockIndex = 0, PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = random, - }); + }; + ctx.SetRandom(random); + var nextState = sellAction.Execute(ctx); productCount++; @@ -191,7 +192,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -240,7 +241,7 @@ public void ExecuteThrowItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -268,7 +269,7 @@ public void ExecuteThrowRequiredBlockIndexException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/Sell3Test.cs b/.Lib9c.Tests/Action/Sell3Test.cs index a18adc4ad7..eef9d02c12 100644 --- a/.Lib9c.Tests/Action/Sell3Test.cs +++ b/.Lib9c.Tests/Action/Sell3Test.cs @@ -32,7 +32,7 @@ public Sell3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -128,14 +128,15 @@ public void Execute() sellerAvatarAddress = _avatarAddress, }; - var nextState = sellAction.Execute(new ActionContext + var ctx = new ActionContext { BlockIndex = 0, PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = random, - }); + }; + ctx.SetRandom(random); + var nextState = sellAction.Execute(ctx); productCount++; @@ -192,7 +193,7 @@ public void ExecuteThrowFailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -241,7 +242,7 @@ public void ExecuteThrowItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -269,7 +270,7 @@ public void ExecuteThrowRequiredBlockIndexException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/Sell4Test.cs b/.Lib9c.Tests/Action/Sell4Test.cs index 30eca95979..1ca54164df 100644 --- a/.Lib9c.Tests/Action/Sell4Test.cs +++ b/.Lib9c.Tests/Action/Sell4Test.cs @@ -35,7 +35,7 @@ public Sell4Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -161,7 +161,7 @@ public void Execute(ItemType itemType, bool shopItemExist, int blockIndex) PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); const long expiredBlockIndex = Sell6.ExpiredBlockIndex + 1; @@ -223,7 +223,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -274,7 +274,7 @@ public void Execute_Throw_ItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -303,7 +303,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -332,7 +332,7 @@ public void Execute_Throw_RequiredBlockIndexException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/Sell5Test.cs b/.Lib9c.Tests/Action/Sell5Test.cs index 960d46cdc1..b574dd77e9 100644 --- a/.Lib9c.Tests/Action/Sell5Test.cs +++ b/.Lib9c.Tests/Action/Sell5Test.cs @@ -34,7 +34,7 @@ public Sell5Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -181,7 +181,7 @@ int expectedProductsCount PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); const long expiredBlockIndex = Sell6.ExpiredBlockIndex + 1; @@ -299,7 +299,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -352,7 +352,7 @@ public void Execute_Throw_ItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -382,7 +382,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/Sell6Test.cs b/.Lib9c.Tests/Action/Sell6Test.cs index 6a6a18bd70..d251e64b7b 100644 --- a/.Lib9c.Tests/Action/Sell6Test.cs +++ b/.Lib9c.Tests/Action/Sell6Test.cs @@ -34,7 +34,7 @@ public Sell6Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -182,7 +182,7 @@ int expectedProductsCount PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); const long expiredBlockIndex = Sell6.ExpiredBlockIndex + 1; @@ -513,7 +513,7 @@ public void Execute_20210604( PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); // Check AvatarState and Inventory @@ -602,7 +602,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -655,7 +655,7 @@ public void Execute_Throw_ItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -685,7 +685,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } } diff --git a/.Lib9c.Tests/Action/Sell7Test.cs b/.Lib9c.Tests/Action/Sell7Test.cs index 29f00c37f4..35dc1b1eb5 100644 --- a/.Lib9c.Tests/Action/Sell7Test.cs +++ b/.Lib9c.Tests/Action/Sell7Test.cs @@ -38,7 +38,7 @@ public Sell7Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -196,7 +196,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -296,7 +296,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -351,7 +351,7 @@ public void Execute_Throw_ItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -382,7 +382,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -433,7 +433,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -465,7 +465,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Sell8Test.cs b/.Lib9c.Tests/Action/Sell8Test.cs index 5d057aee4d..3d7b876a14 100644 --- a/.Lib9c.Tests/Action/Sell8Test.cs +++ b/.Lib9c.Tests/Action/Sell8Test.cs @@ -38,7 +38,7 @@ public Sell8Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -196,7 +196,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -289,7 +289,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -344,7 +344,7 @@ public void Execute_Throw_ItemDoesNotExistException() BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -375,7 +375,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -426,7 +426,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -458,7 +458,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Sell9Test.cs b/.Lib9c.Tests/Action/Sell9Test.cs index 6f076247f5..ffd3f315e6 100644 --- a/.Lib9c.Tests/Action/Sell9Test.cs +++ b/.Lib9c.Tests/Action/Sell9Test.cs @@ -38,7 +38,7 @@ public Sell9Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -166,7 +166,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -255,7 +255,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -328,7 +328,7 @@ public void Execute_Throw_ItemDoesNotExistException(bool isLock) BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -359,7 +359,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -410,7 +410,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -442,7 +442,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/SellCancellation0Test.cs b/.Lib9c.Tests/Action/SellCancellation0Test.cs index e306128768..0671a7cbfc 100644 --- a/.Lib9c.Tests/Action/SellCancellation0Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation0Test.cs @@ -27,7 +27,7 @@ public SellCancellation0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -104,7 +104,7 @@ public void Execute() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellCancellation2Test.cs b/.Lib9c.Tests/Action/SellCancellation2Test.cs index 491fced58a..ceeb631054 100644 --- a/.Lib9c.Tests/Action/SellCancellation2Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation2Test.cs @@ -29,7 +29,7 @@ public SellCancellation2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -121,7 +121,7 @@ public void Execute() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellCancellation3Test.cs b/.Lib9c.Tests/Action/SellCancellation3Test.cs index 1e016ab0f1..1a22e15913 100644 --- a/.Lib9c.Tests/Action/SellCancellation3Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation3Test.cs @@ -27,7 +27,7 @@ public SellCancellation3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -131,7 +131,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -161,7 +161,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellCancellation4Test.cs b/.Lib9c.Tests/Action/SellCancellation4Test.cs index ecc78d0f5f..ed27848efa 100644 --- a/.Lib9c.Tests/Action/SellCancellation4Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation4Test.cs @@ -27,7 +27,7 @@ public SellCancellation4Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -131,7 +131,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -161,7 +161,7 @@ public void Execute() { BlockIndex = 0, PreviousState = previousStates, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellCancellation5Test.cs b/.Lib9c.Tests/Action/SellCancellation5Test.cs index 8ffd94b883..9630218640 100644 --- a/.Lib9c.Tests/Action/SellCancellation5Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation5Test.cs @@ -31,7 +31,7 @@ public SellCancellation5Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -158,7 +158,7 @@ public void Execute(ItemType itemType, string guid, bool contain) { BlockIndex = 1, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -188,7 +188,7 @@ public void Execute_Throw_FailedLoadStateException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = default, }) ); @@ -256,7 +256,7 @@ public void Execute_Throw_ItemDoesNotExistException() { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -296,7 +296,7 @@ public void Execute_Throw_InvalidAddressException_From_Agent() { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -336,7 +336,7 @@ public void Execute_Throw_InvalidAddressException_From_Avatar() { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); diff --git a/.Lib9c.Tests/Action/SellCancellation6Test.cs b/.Lib9c.Tests/Action/SellCancellation6Test.cs index f19cdc378e..d92b37378f 100644 --- a/.Lib9c.Tests/Action/SellCancellation6Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation6Test.cs @@ -33,7 +33,7 @@ public SellCancellation6Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -193,7 +193,7 @@ public void Execute(ItemType itemType, string guid, bool contain, int itemCount, { BlockIndex = 1, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -241,7 +241,7 @@ public void Execute_Throw_FailedLoadStateException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = default, }) ); @@ -341,7 +341,7 @@ public void Execute_Throw_ItemDoesNotExistException(ItemType itemType) { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -382,7 +382,7 @@ public void Execute_Throw_InvalidAddressException_From_Agent() { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -422,7 +422,7 @@ public void Execute_Throw_InvalidAddressException_From_Avatar() { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); diff --git a/.Lib9c.Tests/Action/SellCancellation7Test.cs b/.Lib9c.Tests/Action/SellCancellation7Test.cs index 31e96ef700..bc8ea89e6a 100644 --- a/.Lib9c.Tests/Action/SellCancellation7Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation7Test.cs @@ -36,7 +36,7 @@ public SellCancellation7Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -227,7 +227,7 @@ bool backward { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -280,7 +280,7 @@ public void Execute_Throw_FailedLoadStateException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = default, }) ); @@ -385,7 +385,7 @@ public void Execute_Throw_ItemDoesNotExistException(ItemType itemType) { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -446,7 +446,7 @@ public void Execute_Throw_InvalidAddressException(bool useAgentAddress, bool use { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -474,7 +474,7 @@ public void Rehearsal() Addresses.GetItemAddress(default), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/SellCancellation8Test.cs b/.Lib9c.Tests/Action/SellCancellation8Test.cs index f4d1e12c04..ac2c937697 100644 --- a/.Lib9c.Tests/Action/SellCancellation8Test.cs +++ b/.Lib9c.Tests/Action/SellCancellation8Test.cs @@ -36,7 +36,7 @@ public SellCancellation8Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -229,7 +229,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -283,7 +283,7 @@ public void Execute_Throw_FailedLoadStateException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = default, }) ); @@ -403,7 +403,7 @@ public void Execute_Throw_ItemDoesNotExistException(ItemType itemType) { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -467,7 +467,7 @@ public void Execute_Throw_InvalidAddressException(bool useAgentAddress, bool use { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -495,7 +495,7 @@ public void Rehearsal() Addresses.GetItemAddress(default), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -674,7 +674,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellCancellationTest.cs b/.Lib9c.Tests/Action/SellCancellationTest.cs index 6a239f218b..8d78836f14 100644 --- a/.Lib9c.Tests/Action/SellCancellationTest.cs +++ b/.Lib9c.Tests/Action/SellCancellationTest.cs @@ -38,7 +38,7 @@ public SellCancellationTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -233,7 +233,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -261,7 +261,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -318,7 +318,7 @@ public void Execute_Throw_FailedLoadStateException() { BlockIndex = 0, PreviousState = _initialState, - Random = new TestRandom(), + RandomSeed = 0, Signer = default, }) ); @@ -438,7 +438,7 @@ public void Execute_Throw_ItemDoesNotExistException(ItemType itemType) { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -502,7 +502,7 @@ public void Execute_Throw_InvalidAddressException(bool useAgentAddress, bool use { BlockIndex = 0, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Signer = _agentAddress, }) ); @@ -530,7 +530,7 @@ public void Rehearsal() Addresses.GetItemAddress(default), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { @@ -709,7 +709,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); diff --git a/.Lib9c.Tests/Action/SellTest.cs b/.Lib9c.Tests/Action/SellTest.cs index c21c942492..7aaea10de4 100644 --- a/.Lib9c.Tests/Action/SellTest.cs +++ b/.Lib9c.Tests/Action/SellTest.cs @@ -37,7 +37,7 @@ public SellTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -165,7 +165,7 @@ bool backward PreviousState = previousStates, Rehearsal = false, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, }); long expiredBlockIndex = Order.ExpirationInterval + blockIndex; @@ -302,7 +302,7 @@ public void Execute_Throw_InvalidOperationException_DueTo_EmptyState() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -375,7 +375,7 @@ public void Execute_Throw_ItemDoesNotExistException(bool isLock) BlockIndex = 0, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -406,7 +406,7 @@ public void Execute_Throw_InvalidItemTypeException() BlockIndex = 11, PreviousState = _initialState, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -457,7 +457,7 @@ public void Execute_Throw_DuplicateOrderIdException() BlockIndex = 1, PreviousState = previousStates, Signer = _agentAddress, - Random = new TestRandom(), + RandomSeed = 0, })); } @@ -489,7 +489,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/Snapshot/TransferAsset0SnapshotTest.cs b/.Lib9c.Tests/Action/Snapshot/TransferAsset0SnapshotTest.cs index 2c99e2cc3f..610e042835 100644 --- a/.Lib9c.Tests/Action/Snapshot/TransferAsset0SnapshotTest.cs +++ b/.Lib9c.Tests/Action/Snapshot/TransferAsset0SnapshotTest.cs @@ -7,6 +7,7 @@ namespace Lib9c.Tests.Action.Snapshot using Libplanet.Action.State; using Libplanet.Common; using Libplanet.Crypto; + using Libplanet.Store.Trie; using Libplanet.Types.Assets; using Nekoyume.Action; using Nekoyume.Helper; @@ -49,7 +50,7 @@ public Task TransferCrystal() var recipientAddress = recipientPrivateKey.ToAddress(); var crystal = CrystalCalculator.CRYSTAL; var context = new ActionContext(); - IAccount state = new MockStateDelta().MintAsset(context, senderAddress, crystal * 100); + IAccount state = new Account(MockState.Empty).MintAsset(context, senderAddress, crystal * 100); var actionContext = new ActionContext { Signer = senderAddress, @@ -66,6 +67,7 @@ public Task TransferCrystal() .Verify(outputState) .IgnoreMembersWithType>() .IgnoreMembersWithType>() + .IgnoreMembersWithType() .UseTypeName((Text)GetActionTypeId()) .UseMethodName($"{nameof(TransferCrystal)}.summary"); var fungibles = Verifier @@ -88,7 +90,7 @@ public Task TransferWithMemo() var recipientAddress = recipientPrivateKey.ToAddress(); var crystal = CrystalCalculator.CRYSTAL; var context = new ActionContext(); - var state = new MockStateDelta().MintAsset(context, senderAddress, crystal * 100); + var state = new Account(MockState.Empty).MintAsset(context, senderAddress, crystal * 100); var actionContext = new ActionContext { Signer = senderAddress, @@ -106,6 +108,7 @@ public Task TransferWithMemo() .Verify(outputState) .IgnoreMembersWithType>() .IgnoreMembersWithType>() + .IgnoreMembersWithType() .UseTypeName((Text)GetActionTypeId()) .UseMethodName($"{nameof(TransferWithMemo)}.summary"); var fungibles = Verifier diff --git a/.Lib9c.Tests/Action/Stake0Test.cs b/.Lib9c.Tests/Action/Stake0Test.cs index 1ed4077cf2..4b2ab6e25d 100644 --- a/.Lib9c.Tests/Action/Stake0Test.cs +++ b/.Lib9c.Tests/Action/Stake0Test.cs @@ -28,7 +28,7 @@ public Stake0Test(ITestOutputHelper outputHelper) .CreateLogger(); var context = new ActionContext(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) diff --git a/.Lib9c.Tests/Action/Stake2Test.cs b/.Lib9c.Tests/Action/Stake2Test.cs index 949912d83d..18b8d63772 100644 --- a/.Lib9c.Tests/Action/Stake2Test.cs +++ b/.Lib9c.Tests/Action/Stake2Test.cs @@ -29,7 +29,7 @@ public Stake2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) diff --git a/.Lib9c.Tests/Action/StakeTest.cs b/.Lib9c.Tests/Action/StakeTest.cs index b0d68841ee..61652ce59a 100644 --- a/.Lib9c.Tests/Action/StakeTest.cs +++ b/.Lib9c.Tests/Action/StakeTest.cs @@ -490,7 +490,7 @@ private IAccount Execute( { BlockIndex = blockIndex, PreviousState = previousState, - Random = random, + RandomSeed = random.Seed, Rehearsal = false, Signer = signer, }); diff --git a/.Lib9c.Tests/Action/Summon/AuraSummonTest.cs b/.Lib9c.Tests/Action/Summon/AuraSummonTest.cs index cdbb195ce6..e06648fe28 100644 --- a/.Lib9c.Tests/Action/Summon/AuraSummonTest.cs +++ b/.Lib9c.Tests/Action/Summon/AuraSummonTest.cs @@ -51,7 +51,7 @@ public AuraSummonTest() var gold = new GoldCurrencyState(_currency); var context = new ActionContext(); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(_avatarAddress, _avatarState.Serialize()) .SetState(GoldCurrencyState.Address, gold.Serialize()) @@ -81,56 +81,56 @@ public AuraSummonTest() [Theory] // success first group - [InlineData(10001, 1, 600201, 2, 1, new[] { 10620000 }, null)] - [InlineData(10001, 2, 600201, 4, 54, new[] { 10630000, 10640000 }, null)] + [InlineData(10001, 1, 800201, 1, 1, new[] { 10610000 }, null)] + [InlineData(10001, 2, 800201, 2, 54, new[] { 10620000, 10630000 }, null)] // success second group - [InlineData(10002, 1, 600202, 2, 1, new[] { 10620001 }, null)] - [InlineData(10002, 2, 600202, 4, 4, new[] { 10630001, 10640001 }, null)] + [InlineData(10002, 1, 600201, 1, 1, new[] { 10620001 }, null)] + [InlineData(10002, 2, 600201, 2, 4, new[] { 10620001, 10630001 }, null)] // Nine plus zero [InlineData( 10001, 9, - 600201, - 18, + 800201, + 9, 0, - new[] { 10620000, 10620000, 10620000, 10620000, 10620000, 10620000, 10630000, 10630000, 10630000 }, + new[] { 10610000, 10610000, 10610000, 10610000, 10610000, 10610000, 10620000, 10620000, 10620000 }, null )] [InlineData( 10002, 9, - 600202, - 18, + 600201, + 9, 0, - new[] { 10620001, 10620001, 10620001, 10620001, 10630001, 10630001, 10630001, 10640001, 10640001 }, + new[] { 10620001, 10620001, 10620001, 10620001, 10620001, 10630001, 10630001, 10630001, 10630001 }, null )] // Ten plus one [InlineData( 10001, 10, - 600201, - 20, + 800201, + 10, 0, - new[] { 10620000, 10620000, 10620000, 10620000, 10620000, 10620000, 10620000, 10630000, 10630000, 10630000, 10630000 }, + new[] { 10610000, 10610000, 10610000, 10610000, 10610000, 10610000, 10610000, 10610000, 10620000, 10620000, 10620000 }, null )] [InlineData( 10002, 10, - 600202, - 20, + 600201, + 10, 0, - new[] { 10620001, 10620001, 10620001, 10620001, 10630001, 10630001, 10630001, 10630001, 10640001, 10640001, 10640001 }, + new[] { 10620001, 10620001, 10620001, 10620001, 10620001, 10620001, 10630001, 10620001, 10630001, 10630001, 10630001 }, null )] // fail by invalid group [InlineData(100003, 1, null, 0, 0, new int[] { }, typeof(RowNotInTableException))] // fail by not enough material - [InlineData(10001, 1, 600201, 1, 0, new int[] { }, typeof(NotEnoughMaterialException))] - [InlineData(10001, 2, 600201, 1, 0, new int[] { }, typeof(NotEnoughMaterialException))] + [InlineData(10001, 1, 800201, 0, 0, new int[] { }, typeof(NotEnoughMaterialException))] + [InlineData(10001, 2, 800201, 0, 0, new int[] { }, typeof(NotEnoughMaterialException))] // Fail by exceeding summon limit - [InlineData(10001, 11, 600201, 22, 1, new int[] { }, typeof(InvalidSummonCountException))] + [InlineData(10001, 11, 800201, 22, 1, new int[] { }, typeof(InvalidSummonCountException))] public void Execute( int groupId, int summonCount, @@ -150,7 +150,7 @@ Type expectedExc var material = materialSheet.OrderedList.FirstOrDefault(m => m.Id == materialId); _avatarState.inventory.AddItem( ItemFactory.CreateItem(material, random), - materialCount + materialCount * _tableSheets.SummonSheet[groupId].CostMaterialCount ); state = state .SetState(_avatarAddress, _avatarState.SerializeV2()) @@ -178,13 +178,14 @@ Type expectedExc if (expectedExc == null) { // Success - var nextState = action.Execute(new ActionContext + var ctx = new ActionContext { PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = random, - }); + }; + ctx.SetRandom(random); + var nextState = action.Execute(ctx); var equipments = nextState.GetAvatarStateV2(_avatarAddress).inventory.Equipments .ToList(); @@ -217,7 +218,7 @@ Type expectedExc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = random, + RandomSeed = random.Seed, }); }); } diff --git a/.Lib9c.Tests/Action/TransferAsset2Test.cs b/.Lib9c.Tests/Action/TransferAsset2Test.cs index febbf7e298..b72d090c97 100644 --- a/.Lib9c.Tests/Action/TransferAsset2Test.cs +++ b/.Lib9c.Tests/Action/TransferAsset2Test.cs @@ -47,7 +47,7 @@ public void Constructor_ThrowsMemoLengthOverflowException() [Fact] public void Execute() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, _currency * 1000) @@ -72,7 +72,7 @@ public void Execute() [Fact] public void ExecuteWithInvalidSigner() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -102,7 +102,7 @@ public void ExecuteWithInvalidSigner() [Fact] public void ExecuteWithInvalidRecipient() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); // Should not allow TransferAsset2 with same sender and recipient. @@ -139,7 +139,7 @@ public void ExecuteWithInvalidRecipient() [Fact] public void ExecuteWithInsufficientBalance() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -168,7 +168,7 @@ public void ExecuteWithMinterAsSender() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, currencyBySender * 1000) .SetBalance(_recipient, currencyBySender * 10)); @@ -200,7 +200,7 @@ public void ExecuteWithMinterAsRecipient() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyByRecipient = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, currencyByRecipient * 1000) .SetBalance(_sender, currencyByRecipient * 10)); @@ -229,7 +229,7 @@ public void ExecuteWithMinterAsRecipient() public void ExecuteWithUnactivatedRecipient() { var activatedAddress = new ActivatedAccountsState().AddAccount(new PrivateKey().ToAddress()); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_sender.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetState(Addresses.ActivatedAccount, activatedAddress.Serialize()) @@ -265,7 +265,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -375,7 +375,7 @@ public void CheckObsolete() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _sender, Rehearsal = false, BlockIndex = TransferAsset3.CrystalTransferringRestrictionStartIndex, diff --git a/.Lib9c.Tests/Action/TransferAsset3Test.cs b/.Lib9c.Tests/Action/TransferAsset3Test.cs index 03d0f550ad..8ee2eed304 100644 --- a/.Lib9c.Tests/Action/TransferAsset3Test.cs +++ b/.Lib9c.Tests/Action/TransferAsset3Test.cs @@ -77,7 +77,7 @@ public void Execute(bool activate, bool legacyActivate, bool stateExist) mockState = mockState.SetState(_recipient, new AgentState(_recipient).Serialize()); } - var prevState = new MockStateDelta(mockState); + var prevState = new Account(mockState); var action = new TransferAsset3( sender: _sender, recipient: _recipient, @@ -98,7 +98,7 @@ public void Execute(bool activate, bool legacyActivate, bool stateExist) [Fact] public void ExecuteWithInvalidSigner() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -130,7 +130,7 @@ public void ExecuteWithInvalidRecipient() { var balance = ImmutableDictionary<(Address, Currency), FungibleAssetValue>.Empty .Add((_sender, _currency), _currency * 1000); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); @@ -159,7 +159,7 @@ public void ExecuteWithInvalidRecipient() [Fact] public void ExecuteWithInsufficientBalance() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)) @@ -189,7 +189,7 @@ public void ExecuteWithMinterAsSender() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -222,7 +222,7 @@ public void ExecuteWithMinterAsRecipient() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyByRecipient = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, currencyByRecipient * 1000) .SetBalance(_recipient, currencyByRecipient * 10) @@ -252,7 +252,7 @@ public void ExecuteWithMinterAsRecipient() public void ExecuteWithUnactivatedRecipient() { var activatedAddress = new ActivatedAccountsState().AddAccount(new PrivateKey().ToAddress()); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_sender.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetState(Addresses.ActivatedAccount, activatedAddress.Serialize()) @@ -288,7 +288,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -357,7 +357,7 @@ public void LoadPlainValue(string memo) public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000)); diff --git a/.Lib9c.Tests/Action/TransferAsset4Test.cs b/.Lib9c.Tests/Action/TransferAsset4Test.cs index 61d946028e..528bac61bc 100644 --- a/.Lib9c.Tests/Action/TransferAsset4Test.cs +++ b/.Lib9c.Tests/Action/TransferAsset4Test.cs @@ -50,7 +50,7 @@ public void Execute() { var contractAddress = _sender.Derive(nameof(RequestPledge)); var patronAddress = new PrivateKey().ToAddress(); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -74,7 +74,7 @@ public void Execute() [Fact] public void Execute_Throw_InvalidTransferSignerException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10) @@ -105,7 +105,7 @@ public void Execute_Throw_InvalidTransferSignerException() [Fact] public void Execute_Throw_InvalidTransferRecipientException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_sender, Currencies.Mead * 1)); @@ -134,7 +134,7 @@ public void Execute_Throw_InvalidTransferRecipientException() [Fact] public void Execute_Throw_InsufficientBalanceException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, _currency * 1000) @@ -170,7 +170,7 @@ public void Execute_Throw_InvalidTransferMinterException(bool minterAsSender) // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, minter); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -209,7 +209,7 @@ public void Rehearsal() var context = new ActionContext(); IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta().MintAsset(context, _sender, Currencies.Mead * 1), + PreviousState = new Account(MockState.Empty).MintAsset(context, _sender, Currencies.Mead * 1), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -278,7 +278,7 @@ public void LoadPlainValue(string memo) public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000) diff --git a/.Lib9c.Tests/Action/TransferAssetTest.cs b/.Lib9c.Tests/Action/TransferAssetTest.cs index f1a0e6d91c..b2a2a52f87 100644 --- a/.Lib9c.Tests/Action/TransferAssetTest.cs +++ b/.Lib9c.Tests/Action/TransferAssetTest.cs @@ -53,7 +53,7 @@ public void Execute() { var contractAddress = _sender.Derive(nameof(RequestPledge)); var patronAddress = new PrivateKey().ToAddress(); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -77,7 +77,7 @@ public void Execute() [Fact] public void Execute_Throw_InvalidTransferSignerException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10) @@ -108,7 +108,7 @@ public void Execute_Throw_InvalidTransferSignerException() [Fact] public void Execute_Throw_InvalidTransferRecipientException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_sender, Currencies.Mead * 1)); @@ -137,7 +137,7 @@ public void Execute_Throw_InvalidTransferRecipientException() [Fact] public void Execute_Throw_InsufficientBalanceException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, _currency * 1000) @@ -173,7 +173,7 @@ public void Execute_Throw_InvalidTransferMinterException(bool minterAsSender) // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, minter); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -212,7 +212,7 @@ public void Rehearsal() var context = new ActionContext(); IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta().MintAsset(context, _sender, Currencies.Mead * 1), + PreviousState = new Account(MockState.Empty).MintAsset(context, _sender, Currencies.Mead * 1), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -281,7 +281,7 @@ public void LoadPlainValue(string memo) public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000) @@ -320,7 +320,7 @@ public void LoadPlainValue_ThrowsMemoLengthOverflowException() [Fact] public void Execute_Throw_ArgumentException() { - var baseState = new MockStateDelta( + var baseState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); var action = new TransferAsset( diff --git a/.Lib9c.Tests/Action/TransferAssetTest0.cs b/.Lib9c.Tests/Action/TransferAssetTest0.cs index 23a086c81f..049a7b5682 100644 --- a/.Lib9c.Tests/Action/TransferAssetTest0.cs +++ b/.Lib9c.Tests/Action/TransferAssetTest0.cs @@ -46,7 +46,7 @@ public void Constructor_ThrowsMemoLengthOverflowException() [Fact] public void Execute() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -70,7 +70,7 @@ public void Execute() [Fact] public void ExecuteWithInvalidSigner() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -100,7 +100,7 @@ public void ExecuteWithInvalidSigner() [Fact] public void ExecuteWithInvalidRecipient() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); // Should not allow TransferAsset with same sender and recipient. @@ -137,7 +137,7 @@ public void ExecuteWithInvalidRecipient() [Fact] public void ExecuteWithInsufficientBalance() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -166,7 +166,7 @@ public void ExecuteWithMinterAsSender() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, currencyBySender * 1000) .SetBalance(_recipient, currencyBySender * 10)); @@ -198,7 +198,7 @@ public void ExecuteWithMinterAsRecipient() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyByRecipient = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, currencyByRecipient * 1000) .SetBalance(_recipient, currencyByRecipient * 10)); @@ -234,7 +234,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, diff --git a/.Lib9c.Tests/Action/TransferAssets0Test.cs b/.Lib9c.Tests/Action/TransferAssets0Test.cs index 9e84cb2e43..12b0268ed7 100644 --- a/.Lib9c.Tests/Action/TransferAssets0Test.cs +++ b/.Lib9c.Tests/Action/TransferAssets0Test.cs @@ -98,7 +98,7 @@ public void Execute(bool activate, bool legacyActivate, bool stateExist) .SetState(_recipient2, new AgentState(_recipient2).Serialize()); } - var prevState = new MockStateDelta(mockState); + var prevState = new Account(mockState); var action = new TransferAssets0( sender: _sender, new List<(Address, FungibleAssetValue)> @@ -123,7 +123,7 @@ public void Execute(bool activate, bool legacyActivate, bool stateExist) [Fact] public void ExecuteWithInvalidSigner() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -155,7 +155,7 @@ public void ExecuteWithInvalidSigner() [Fact] public void ExecuteWithInvalidRecipient() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); // Should not allow TransferAsset with same sender and recipient. @@ -185,7 +185,7 @@ public void ExecuteWithInvalidRecipient() [Fact] public void ExecuteWithInsufficientBalance() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, _currency * 1000) @@ -217,7 +217,7 @@ public void ExecuteWithMinterAsSender() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -252,7 +252,7 @@ public void ExecuteWithMinterAsRecipient() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyByRecipient = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyByRecipient * 1000) @@ -284,7 +284,7 @@ public void ExecuteWithMinterAsRecipient() public void ExecuteWithUnactivatedRecipient() { var activatedAddress = new ActivatedAccountsState().AddAccount(new PrivateKey().ToAddress()); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_sender.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetState(Addresses.ActivatedAccount, activatedAddress.Serialize()) @@ -324,7 +324,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -456,7 +456,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _sender, Rehearsal = false, BlockIndex = 1, @@ -468,7 +468,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000)); diff --git a/.Lib9c.Tests/Action/TransferAssets2Test.cs b/.Lib9c.Tests/Action/TransferAssets2Test.cs index b045139b7f..f8a55370be 100644 --- a/.Lib9c.Tests/Action/TransferAssets2Test.cs +++ b/.Lib9c.Tests/Action/TransferAssets2Test.cs @@ -66,7 +66,7 @@ public void Execute() { var contractAddress = _sender.Derive(nameof(RequestPledge)); var patronAddress = new PrivateKey().ToAddress(); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -96,7 +96,7 @@ public void Execute() [Fact] public void Execute_Throw_InvalidTransferSignerException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -128,7 +128,7 @@ public void Execute_Throw_InvalidTransferSignerException() [Fact] public void Execute_Throw_InvalidTransferRecipientException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); // Should not allow TransferAsset with same sender and recipient. @@ -158,7 +158,7 @@ public void Execute_Throw_InvalidTransferRecipientException() [Fact] public void Execute_Throw_InsufficientBalanceException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, _currency * 1000) @@ -193,7 +193,7 @@ public void Execute_Throw_InvalidTransferMinterException() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -234,7 +234,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -366,7 +366,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _sender, Rehearsal = false, BlockIndex = 1, @@ -378,7 +378,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000)); diff --git a/.Lib9c.Tests/Action/TransferAssetsTest.cs b/.Lib9c.Tests/Action/TransferAssetsTest.cs index e1c25b7a01..9387ea87be 100644 --- a/.Lib9c.Tests/Action/TransferAssetsTest.cs +++ b/.Lib9c.Tests/Action/TransferAssetsTest.cs @@ -68,7 +68,7 @@ public void Execute() { var contractAddress = _sender.Derive(nameof(RequestPledge)); var patronAddress = new PrivateKey().ToAddress(); - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -98,7 +98,7 @@ public void Execute() [Fact] public void Execute_Throw_InvalidTransferSignerException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000) .SetBalance(_recipient, _currency * 10)); @@ -130,7 +130,7 @@ public void Execute_Throw_InvalidTransferSignerException() [Fact] public void Execute_Throw_InvalidTransferRecipientException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); // Should not allow TransferAsset with same sender and recipient. @@ -160,7 +160,7 @@ public void Execute_Throw_InvalidTransferRecipientException() [Fact] public void Execute_Throw_InsufficientBalanceException() { - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, _currency * 1000) @@ -195,7 +195,7 @@ public void Execute_Throw_InvalidTransferMinterException() // Use of obsolete method Currency.Legacy(): https://github.com/planetarium/lib9c/discussions/1319 var currencyBySender = Currency.Legacy("NCG", 2, _sender); #pragma warning restore CS0618 - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient, new AgentState(_recipient).Serialize()) .SetBalance(_sender, currencyBySender * 1000) @@ -236,7 +236,7 @@ public void Rehearsal() IAccount nextState = action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = default, Rehearsal = true, BlockIndex = 1, @@ -368,7 +368,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() { action.Execute(new ActionContext() { - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _sender, Rehearsal = false, BlockIndex = 1, @@ -380,7 +380,7 @@ public void Execute_Throw_ArgumentOutOfRangeException() public void Execute_Throw_InvalidTransferCurrencyException() { var crystal = CrystalCalculator.CRYSTAL; - var prevState = new MockStateDelta( + var prevState = new Account( MockState.Empty .SetState(_recipient.Derive(ActivationKey.DeriveKey), true.Serialize()) .SetBalance(_sender, crystal * 1000)); @@ -404,7 +404,7 @@ public void Execute_Throw_InvalidTransferCurrencyException() [Fact] public void Execute_Throw_ArgumentException() { - var baseState = new MockStateDelta( + var baseState = new Account( MockState.Empty .SetBalance(_sender, _currency * 1000)); var action = new TransferAssets( diff --git a/.Lib9c.Tests/Action/UnlockEquipmentRecipe1Test.cs b/.Lib9c.Tests/Action/UnlockEquipmentRecipe1Test.cs index fb7dacfeff..db324c7e8e 100644 --- a/.Lib9c.Tests/Action/UnlockEquipmentRecipe1Test.cs +++ b/.Lib9c.Tests/Action/UnlockEquipmentRecipe1Test.cs @@ -51,7 +51,7 @@ public UnlockEquipmentRecipe1Test() agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.EquipmentItemSheet.Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.EquipmentItemRecipeSheet.Serialize()) @@ -59,52 +59,67 @@ public UnlockEquipmentRecipe1Test() } [Theory] - [InlineData(new[] { 2, 3 }, true, false, false, true, 4, null)] - [InlineData(new[] { 2 }, true, false, false, true, 2, null)] + [InlineData(new[] { 6, 5 }, true, false, false, true, true, null)] + [InlineData(new[] { 6 }, true, false, false, true, true, null)] // Unlock Belt without Armor unlock. - [InlineData(new[] { 83 }, true, false, false, true, 1, null)] + [InlineData(new[] { 94 }, true, false, false, true, true, null)] // Unlock Weapon & Ring - [InlineData(new[] { 2, 133 }, true, false, false, true, 3, null)] + [InlineData(new[] { 6, 133 }, true, false, false, true, true, null)] // AvatarState migration. - [InlineData(new[] { 2 }, true, true, false, true, 2, null)] + [InlineData(new[] { 6 }, true, true, false, true, true, null)] // Invalid recipe id. - [InlineData(new[] { -1 }, true, false, false, false, 100, typeof(InvalidRecipeIdException))] - [InlineData(new[] { 1 }, true, false, false, true, 100, typeof(InvalidRecipeIdException))] - [InlineData(new int[] { }, true, false, false, false, 100, typeof(InvalidRecipeIdException))] + [InlineData(new[] { -1 }, true, false, false, false, false, typeof(InvalidRecipeIdException))] + [InlineData(new[] { 1 }, true, false, false, true, false, typeof(InvalidRecipeIdException))] + [InlineData(new int[] { }, true, false, false, false, false, typeof(InvalidRecipeIdException))] // AvatarState is null. - [InlineData(new[] { 2 }, false, true, false, true, 100, typeof(FailedLoadStateException))] - [InlineData(new[] { 2 }, false, false, false, true, 100, typeof(FailedLoadStateException))] + [InlineData(new[] { 6 }, false, true, false, true, true, typeof(FailedLoadStateException))] + [InlineData(new[] { 6 }, false, false, false, true, true, typeof(FailedLoadStateException))] // Already unlocked recipe. - [InlineData(new[] { 2 }, true, false, true, true, 100, typeof(AlreadyRecipeUnlockedException))] + [InlineData(new[] { 6 }, true, false, true, true, true, typeof(AlreadyRecipeUnlockedException))] // Skip prev recipe. - [InlineData(new[] { 3 }, true, false, false, true, 100, typeof(InvalidRecipeIdException))] + [InlineData(new[] { 5 }, true, false, false, true, false, typeof(InvalidRecipeIdException))] // Stage not cleared. - [InlineData(new[] { 2 }, true, false, false, false, 100, typeof(NotEnoughClearedStageLevelException))] + [InlineData(new[] { 6 }, true, false, false, false, true, typeof(NotEnoughClearedStageLevelException))] // Insufficient CRYSTAL. - [InlineData(new[] { 2 }, true, false, false, true, 1, typeof(NotEnoughFungibleAssetValueException))] + [InlineData(new[] { 6 }, true, false, false, true, false, typeof(NotEnoughFungibleAssetValueException))] public void Execute( IEnumerable ids, bool stateExist, bool migrationRequired, bool alreadyUnlocked, bool stageCleared, - int balance, + bool balanceEnough, Type exc ) { var context = new ActionContext(); - var state = _initialState.MintAsset(context, _agentAddress, balance * _currency); List recipeIds = ids.ToList(); + var rows = _tableSheets.EquipmentItemRecipeSheet.Values + .Where(r => recipeIds.Contains(r.Id)).ToList(); + var balance = balanceEnough ? rows.Sum(r => r.CRYSTAL) : 1; + var state = _initialState.MintAsset(context, _agentAddress, balance * _currency); Address unlockedRecipeIdsAddress = _avatarAddress.Derive("recipe_ids"); if (stateExist) { + var stage = rows.Any() ? rows.Max(r => r.UnlockStage) : 1; + var worldSheet = _tableSheets.WorldSheet; + var worldId = worldSheet.OrderedList + .Last(r => r.StageBegin <= stage && stage <= r.StageEnd).Id; var worldInformation = _avatarState.worldInformation; if (stageCleared) { - var stage = _tableSheets.EquipmentItemRecipeSheet[recipeIds.Max()].UnlockStage; - for (int i = 1; i < stage + 1; i++) + for (int j = 1; j < worldId + 1; j++) { - worldInformation.ClearStage(1, i, 0, _tableSheets.WorldSheet, _tableSheets.WorldUnlockSheet); + for (var i = 1; i < stage + 1; i++) + { + _avatarState.worldInformation.ClearStage( + j, + i, + 0, + _tableSheets.WorldSheet, + _tableSheets.WorldUnlockSheet + ); + } } } else @@ -145,7 +160,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(unlockedRecipeIdsAddress, out List rawIds)); @@ -163,7 +178,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/UnlockEquipmentRecipeTest.cs b/.Lib9c.Tests/Action/UnlockEquipmentRecipeTest.cs index 1c3310a006..a7f8bf3888 100644 --- a/.Lib9c.Tests/Action/UnlockEquipmentRecipeTest.cs +++ b/.Lib9c.Tests/Action/UnlockEquipmentRecipeTest.cs @@ -51,7 +51,7 @@ public UnlockEquipmentRecipeTest() agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(_agentAddress, agentState.Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.EquipmentItemSheet.Serialize()) .SetState(Addresses.GetSheetAddress(), _tableSheets.EquipmentItemRecipeSheet.Serialize()) @@ -59,52 +59,67 @@ public UnlockEquipmentRecipeTest() } [Theory] - [InlineData(new[] { 2, 3 }, true, false, false, true, 4, null)] - [InlineData(new[] { 2 }, true, false, false, true, 2, null)] + [InlineData(new[] { 6, 5 }, true, false, false, true, true, null)] + [InlineData(new[] { 6 }, true, false, false, true, true, null)] // Unlock Belt without Armor unlock. - [InlineData(new[] { 83 }, true, false, false, true, 1, null)] + [InlineData(new[] { 94 }, true, false, false, true, true, null)] // Unlock Weapon & Ring - [InlineData(new[] { 2, 133 }, true, false, false, true, 3, null)] + [InlineData(new[] { 6, 133 }, true, false, false, true, true, null)] // AvatarState migration. - [InlineData(new[] { 2 }, true, true, false, true, 2, null)] + [InlineData(new[] { 6 }, true, true, false, true, true, null)] // Invalid recipe id. - [InlineData(new[] { -1 }, true, false, false, false, 100, typeof(InvalidRecipeIdException))] - [InlineData(new[] { 1 }, true, false, false, true, 100, typeof(InvalidRecipeIdException))] - [InlineData(new int[] { }, true, false, false, false, 100, typeof(InvalidRecipeIdException))] + [InlineData(new[] { -1 }, true, false, false, false, false, typeof(InvalidRecipeIdException))] + [InlineData(new[] { 1 }, true, false, false, true, false, typeof(InvalidRecipeIdException))] + [InlineData(new int[] { }, true, false, false, false, false, typeof(InvalidRecipeIdException))] // AvatarState is null. - [InlineData(new[] { 2 }, false, true, false, true, 100, typeof(FailedLoadStateException))] - [InlineData(new[] { 2 }, false, false, false, true, 100, typeof(FailedLoadStateException))] + [InlineData(new[] { 6 }, false, true, false, true, true, typeof(FailedLoadStateException))] + [InlineData(new[] { 6 }, false, false, false, true, true, typeof(FailedLoadStateException))] // Already unlocked recipe. - [InlineData(new[] { 2 }, true, false, true, true, 100, typeof(AlreadyRecipeUnlockedException))] + [InlineData(new[] { 6 }, true, false, true, true, true, typeof(AlreadyRecipeUnlockedException))] // Skip prev recipe. - [InlineData(new[] { 3 }, true, false, false, true, 100, typeof(InvalidRecipeIdException))] + [InlineData(new[] { 5 }, true, false, false, true, true, typeof(InvalidRecipeIdException))] // Stage not cleared. - [InlineData(new[] { 2 }, true, false, false, false, 100, typeof(NotEnoughClearedStageLevelException))] + [InlineData(new[] { 6 }, true, false, false, false, true, typeof(NotEnoughClearedStageLevelException))] // Insufficient CRYSTAL. - [InlineData(new[] { 2 }, true, false, false, true, 1, typeof(NotEnoughFungibleAssetValueException))] + [InlineData(new[] { 6 }, true, false, false, true, false, typeof(NotEnoughFungibleAssetValueException))] public void Execute( IEnumerable ids, bool stateExist, bool migrationRequired, bool alreadyUnlocked, bool stageCleared, - int balance, + bool balanceEnough, Type exc ) { var context = new ActionContext(); - var state = _initialState.MintAsset(context, _agentAddress, balance * _currency); List recipeIds = ids.ToList(); + var rows = _tableSheets.EquipmentItemRecipeSheet.Values + .Where(r => recipeIds.Contains(r.Id)).ToList(); + var balance = balanceEnough ? rows.Sum(r => r.CRYSTAL) : 1; + var state = _initialState.MintAsset(context, _agentAddress, balance * _currency); Address unlockedRecipeIdsAddress = _avatarAddress.Derive("recipe_ids"); if (stateExist) { + var stage = rows.Any() ? rows.Max(r => r.UnlockStage) : 1; + var worldSheet = _tableSheets.WorldSheet; + var worldId = worldSheet.OrderedList + .Last(r => r.StageBegin <= stage && stage <= r.StageEnd).Id; var worldInformation = _avatarState.worldInformation; if (stageCleared) { - var stage = _tableSheets.EquipmentItemRecipeSheet[recipeIds.Max()].UnlockStage; - for (int i = 1; i < stage + 1; i++) + for (int j = 1; j < worldId + 1; j++) { - worldInformation.ClearStage(1, i, 0, _tableSheets.WorldSheet, _tableSheets.WorldUnlockSheet); + for (var i = 1; i < stage + 1; i++) + { + _avatarState.worldInformation.ClearStage( + j, + i, + 0, + _tableSheets.WorldSheet, + _tableSheets.WorldUnlockSheet + ); + } } } else @@ -145,7 +160,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(unlockedRecipeIdsAddress, out List rawIds)); @@ -163,7 +178,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/UnlockRuneSlotTest.cs b/.Lib9c.Tests/Action/UnlockRuneSlotTest.cs index b3bf1ec936..75a7067495 100644 --- a/.Lib9c.Tests/Action/UnlockRuneSlotTest.cs +++ b/.Lib9c.Tests/Action/UnlockRuneSlotTest.cs @@ -34,7 +34,7 @@ public IAccount Init(out Address agentAddress, out Address avatarAddress, out lo .StartedBlockIndex; var goldCurrencyState = new GoldCurrencyState(_goldCurrency); - var state = new MockStateDelta() + var state = new Account(MockState.Empty) .SetState(goldCurrencyState.address, goldCurrencyState.Serialize()) .SetState(agentAddress, new AgentState(agentAddress).Serialize()); @@ -78,7 +78,7 @@ public void Execute(int slotIndex) { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -129,7 +129,7 @@ public void Execute_InsufficientBalanceException() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -139,7 +139,7 @@ public void Execute_InsufficientBalanceException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -158,7 +158,7 @@ public void Execute_SlotNotFoundException() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -168,7 +168,7 @@ public void Execute_SlotNotFoundException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -187,7 +187,7 @@ public void Execute_MismatchRuneSlotTypeException() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -197,7 +197,7 @@ public void Execute_MismatchRuneSlotTypeException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } @@ -220,7 +220,7 @@ public void Execute_SlotIsAlreadyUnlockedException() { BlockIndex = blockIndex, PreviousState = state, - Random = new TestRandom(0), + RandomSeed = 0, Rehearsal = false, Signer = agentAddress, }; @@ -232,7 +232,7 @@ public void Execute_SlotIsAlreadyUnlockedException() { PreviousState = state, Signer = agentAddress, - Random = new TestRandom(), + RandomSeed = 0, BlockIndex = blockIndex, })); } diff --git a/.Lib9c.Tests/Action/UnlockWorld1Test.cs b/.Lib9c.Tests/Action/UnlockWorld1Test.cs index e87bba2490..a7a4747b03 100644 --- a/.Lib9c.Tests/Action/UnlockWorld1Test.cs +++ b/.Lib9c.Tests/Action/UnlockWorld1Test.cs @@ -49,7 +49,7 @@ public UnlockWorld1Test() agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GetSheetAddress(), _tableSheets.WorldUnlockSheet.Serialize()) .SetState(Addresses.GameConfig, gameConfigState.Serialize()); } @@ -160,7 +160,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(unlockedWorldIdsAddress, out List rawIds)); @@ -178,7 +178,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/UnlockWorldTest.cs b/.Lib9c.Tests/Action/UnlockWorldTest.cs index f50292dc18..acbbd01d47 100644 --- a/.Lib9c.Tests/Action/UnlockWorldTest.cs +++ b/.Lib9c.Tests/Action/UnlockWorldTest.cs @@ -49,7 +49,7 @@ public UnlockWorldTest() agentState.avatarAddresses.Add(0, _avatarAddress); - _initialState = new MockStateDelta() + _initialState = new Account(MockState.Empty) .SetState(Addresses.GetSheetAddress(), _tableSheets.WorldUnlockSheet.Serialize()) .SetState(Addresses.GameConfig, gameConfigState.Serialize()); } @@ -162,7 +162,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, }); Assert.True(nextState.TryGetState(unlockedWorldIdsAddress, out List rawIds)); @@ -180,7 +180,7 @@ Type exc PreviousState = state, Signer = _agentAddress, BlockIndex = 1, - Random = _random, + RandomSeed = _random.Seed, })); } } diff --git a/.Lib9c.Tests/Action/UpdateSell0Test.cs b/.Lib9c.Tests/Action/UpdateSell0Test.cs index fcee931fbd..56f4be7baf 100644 --- a/.Lib9c.Tests/Action/UpdateSell0Test.cs +++ b/.Lib9c.Tests/Action/UpdateSell0Test.cs @@ -37,7 +37,7 @@ public UpdateSell0Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -244,7 +244,7 @@ bool legacy { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -275,7 +275,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -366,7 +366,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/UpdateSell2Test.cs b/.Lib9c.Tests/Action/UpdateSell2Test.cs index 7b8a8f526d..6c4103521a 100644 --- a/.Lib9c.Tests/Action/UpdateSell2Test.cs +++ b/.Lib9c.Tests/Action/UpdateSell2Test.cs @@ -37,7 +37,7 @@ public UpdateSell2Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -225,7 +225,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -256,7 +256,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -347,7 +347,7 @@ public void Rehearsal() OrderDigestListState.DeriveAddress(_avatarAddress), }; - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var nextState = action.Execute(new ActionContext() { diff --git a/.Lib9c.Tests/Action/UpdateSell3Test.cs b/.Lib9c.Tests/Action/UpdateSell3Test.cs index bcbdff219b..0777a5f5e9 100644 --- a/.Lib9c.Tests/Action/UpdateSell3Test.cs +++ b/.Lib9c.Tests/Action/UpdateSell3Test.cs @@ -37,7 +37,7 @@ public UpdateSell3Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -231,7 +231,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -257,7 +257,7 @@ public void Execute_Throw_ListEmptyException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -282,7 +282,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } diff --git a/.Lib9c.Tests/Action/UpdateSell4Test.cs b/.Lib9c.Tests/Action/UpdateSell4Test.cs index fdc919c6de..592c900be5 100644 --- a/.Lib9c.Tests/Action/UpdateSell4Test.cs +++ b/.Lib9c.Tests/Action/UpdateSell4Test.cs @@ -37,7 +37,7 @@ public UpdateSell4Test(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -231,7 +231,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -257,7 +257,7 @@ public void Execute_Throw_ListEmptyException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -282,7 +282,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } diff --git a/.Lib9c.Tests/Action/UpdateSellTest.cs b/.Lib9c.Tests/Action/UpdateSellTest.cs index 02ad6e5f0b..7ba922a1c3 100644 --- a/.Lib9c.Tests/Action/UpdateSellTest.cs +++ b/.Lib9c.Tests/Action/UpdateSellTest.cs @@ -37,7 +37,7 @@ public UpdateSellTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); var sheets = TableSheetsImporter.ImportSheets(); foreach (var (key, value) in sheets) { @@ -231,7 +231,7 @@ bool fromPreviousAction { BlockIndex = 101, PreviousState = prevState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, Signer = _agentAddress, }); @@ -257,7 +257,7 @@ public void Execute_Throw_ListEmptyException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } @@ -282,7 +282,7 @@ public void Execute_Throw_FailedLoadStateException() Assert.Throws(() => action.Execute(new ActionContext { BlockIndex = 0, - PreviousState = new MockStateDelta(), + PreviousState = new Account(MockState.Empty), Signer = _agentAddress, })); } diff --git a/.Lib9c.Tests/Action/ValidatorSetOperateTest.cs b/.Lib9c.Tests/Action/ValidatorSetOperateTest.cs index c05bf87dc0..5dddaa6607 100644 --- a/.Lib9c.Tests/Action/ValidatorSetOperateTest.cs +++ b/.Lib9c.Tests/Action/ValidatorSetOperateTest.cs @@ -26,7 +26,7 @@ public ValidatorSetOperateTest(ITestOutputHelper outputHelper) .WriteTo.TestOutput(outputHelper) .CreateLogger(); - _initialState = new MockStateDelta(); + _initialState = new Account(MockState.Empty); _validator = new Validator(new PrivateKey().PublicKey, BigInteger.One); var sheets = TableSheetsImporter.ImportSheets(); @@ -45,7 +45,7 @@ public void CheckPermission() var adminState = new AdminState(adminAddress, 100); var initStates = MockState.Empty .SetState(AdminState.Address, adminState.Serialize()); - var state = new MockStateDelta(initStates); + var state = new Account(initStates); var action = ValidatorSetOperate.Append(_validator); var nextState = action.Execute( new ActionContext() @@ -66,7 +66,7 @@ public void CheckPermission_Throws_PermissionDenied() var adminState = new AdminState(adminAddress, 100); var initStates = MockState.Empty .SetState(AdminState.Address, adminState.Serialize()); - var state = new MockStateDelta(initStates); + var state = new Account(initStates); var action = ValidatorSetOperate.Append(_validator); PermissionDeniedException exc1 = Assert.Throws(() => @@ -100,7 +100,7 @@ public void Append_Throws_WhenAlreadyExistValidator() [Fact] public void Update_Throws_WhenDoNotExistValidator() { - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = ValidatorSetOperate.Update(_validator); InvalidOperationException exc = Assert.Throws(() => action.Execute(new ActionContext @@ -115,7 +115,7 @@ public void Update_Throws_WhenDoNotExistValidator() [Fact] public void Remove_Throws_WhenDoNotExistValidator() { - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); var action = ValidatorSetOperate.Remove(_validator); InvalidOperationException exc = Assert.Throws(() => action.Execute(new ActionContext diff --git a/.Lib9c.Tests/CrystalCalculatorTest.cs b/.Lib9c.Tests/CrystalCalculatorTest.cs index c3e8d989b2..bff47869bb 100644 --- a/.Lib9c.Tests/CrystalCalculatorTest.cs +++ b/.Lib9c.Tests/CrystalCalculatorTest.cs @@ -33,10 +33,25 @@ public CrystalCalculatorTest() } [Theory] - [InlineData(new[] { 2 }, 2)] - [InlineData(new[] { 2, 3 }, 4)] - public void CalculateRecipeUnlockCost(IEnumerable recipeIds, int expected) + [InlineData(1)] + [InlineData(2)] + public void CalculateRecipeUnlockCost(int recipeCount) { + var recipeIds = new List(); + var expected = 0; + foreach (var row in _equipmentItemRecipeSheet.OrderedList) + { + if (recipeIds.Count < recipeCount) + { + recipeIds.Add(row.Id); + expected += row.CRYSTAL; + } + else + { + break; + } + } + Assert.Equal(expected * CrystalCalculator.CRYSTAL, CrystalCalculator.CalculateRecipeUnlockCost(recipeIds, _equipmentItemRecipeSheet)); } diff --git a/.Lib9c.Tests/Extensions/SheetsExtensionsTest.cs b/.Lib9c.Tests/Extensions/SheetsExtensionsTest.cs index 37296e539e..2f8aae3392 100644 --- a/.Lib9c.Tests/Extensions/SheetsExtensionsTest.cs +++ b/.Lib9c.Tests/Extensions/SheetsExtensionsTest.cs @@ -24,7 +24,7 @@ public class SheetsExtensionsTest public SheetsExtensionsTest() { - _states = new Tests.Action.MockStateDelta(); + _states = new Account(Tests.Action.MockState.Empty); InitSheets( _states, out _sheetNameAndFiles, diff --git a/.Lib9c.Tests/Fixtures/TableCSV/Cost/EnhancementCostSheetFixtures.cs b/.Lib9c.Tests/Fixtures/TableCSV/Cost/EnhancementCostSheetFixtures.cs new file mode 100644 index 0000000000..f7a8255636 --- /dev/null +++ b/.Lib9c.Tests/Fixtures/TableCSV/Cost/EnhancementCostSheetFixtures.cs @@ -0,0 +1,638 @@ +namespace Lib9c.Tests.Fixtures.TableCSV.Cost +{ + public static class EnhancementCostSheetFixtures + { + public const string V3 = + @"id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_stat_growth_max,extra_stat_growth_min,extra_stat_growth_max,extra_skill_damage_growth_min,extra_skill_damage_growth_max,extra_skill_chance_growth_min,extra_skill_chance_growth_max +1,Weapon,1,1,0,10,25,800,1200,0,0,0,0,0,0 +2,Weapon,1,2,0,30,87,800,1200,0,0,0,0,0,0 +3,Weapon,1,3,0,70,212,800,1200,0,0,0,0,0,0 +4,Weapon,1,4,20,150,837,800,1200,2500,3500,2500,3500,1200,1800 +5,Weapon,1,5,40,310,1762,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,80,630,3062,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,160,1270,4362,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,320,2550,5662,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,640,5110,6962,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,1280,10230,8262,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,2560,20470,9562,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,5120,40950,10862,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,10240,81910,12162,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,20480,163830,13462,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,40960,327670,14762,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,81920,655350,16062,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,163840,1310710,17362,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,327680,2621430,18662,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,655360,5242870,19962,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,1310720,10485750,21262,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,2621440,20971510,22562,800,1200,800,1200,800,1200,400,600 +22,Weapon,2,1,0,200,37,800,1200,0,0,0,0,0,0 +23,Weapon,2,2,0,600,130,800,1200,0,0,0,0,0,0 +24,Weapon,2,3,0,1400,317,800,1200,0,0,0,0,0,0 +25,Weapon,2,4,20,3000,1254,800,1200,2500,3500,2500,3500,1200,1800 +26,Weapon,2,5,40,6200,2641,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,80,12600,4591,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,160,25400,6541,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,320,51000,8491,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,640,102200,10441,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,1280,204600,12391,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,2560,409400,14341,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,5120,819000,16291,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,10240,1638200,18241,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,20480,3276600,20191,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,40960,6553400,22141,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,81920,13107000,24091,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,163840,26214200,26041,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,327680,52428600,27991,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,655360,104857400,29941,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,1310720,209715000,31891,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,2621440,419430200,33841,800,1200,800,1200,800,1200,400,600 +43,Weapon,3,1,0,4000,75,800,1200,0,0,0,0,0,0 +44,Weapon,3,2,0,12000,262,800,1200,0,0,0,0,0,0 +45,Weapon,3,3,0,28000,637,800,1200,0,0,0,0,0,0 +46,Weapon,3,4,20,60000,2512,800,1200,2500,3500,2500,3500,1200,1800 +47,Weapon,3,5,40,124000,5287,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,80,252000,9187,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,160,508000,13087,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,320,1020000,16987,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,640,2044000,20887,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,1280,4092000,24787,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,2560,8188000,28687,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,5120,16380000,32587,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,10240,32764000,36487,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,20480,65532000,40387,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,40960,131068000,44287,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,81920,262140000,48187,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,163840,524284000,52087,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,327680,1048572000,55987,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,655360,2097148000,59887,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,1310720,4194300000,63787,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,2621440,8388604000,67687,800,1200,800,1200,800,1200,400,600 +64,Weapon,4,1,0,150000,162,800,1200,0,0,0,0,0,0 +65,Weapon,4,2,0,300000,568,800,1200,0,0,0,0,0,0 +66,Weapon,4,3,0,600000,1380,800,1200,0,0,0,0,0,0 +67,Weapon,4,4,20,1200000,5442,800,1200,2500,3500,2500,3500,1200,1800 +68,Weapon,4,5,40,2400000,11454,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,80,4800000,19904,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,160,9600000,28354,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,320,19200000,36804,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,640,38400000,45254,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,1280,76800000,53704,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,2560,153600000,62154,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,5120,307200000,70604,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,10240,614400000,79054,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,20480,1228800000,87504,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,40960,2457600000,95954,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,81920,4915200000,104404,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,163840,9830400000,112854,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,327680,19660800000,121304,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,655360,39321600000,129754,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,1310720,78643200000,138204,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,2621440,157286400000,146654,800,1200,800,1200,800,1200,400,600 +85,Weapon,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +86,Weapon,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +87,Weapon,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +88,Weapon,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +89,Weapon,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +90,Weapon,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +91,Weapon,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +92,Weapon,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +93,Weapon,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +94,Weapon,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +95,Weapon,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +96,Weapon,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +97,Weapon,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +98,Weapon,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +99,Weapon,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +100,Weapon,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +101,Weapon,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +102,Weapon,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +103,Weapon,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +104,Weapon,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +105,Weapon,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +106,Armor,1,1,0,10,20,800,1200,0,0,0,0,0,0 +107,Armor,1,2,0,30,70,800,1200,0,0,0,0,0,0 +108,Armor,1,3,0,70,170,800,1200,0,0,0,0,0,0 +109,Armor,1,4,20,150,670,800,1200,2500,3500,2500,3500,1200,1800 +110,Armor,1,5,40,310,1410,800,1200,0,0,0,0,0,0 +111,Armor,1,6,80,630,2450,800,1200,0,0,0,0,0,0 +112,Armor,1,7,160,1270,3490,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,320,2550,4530,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,640,5110,5570,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,1280,10230,6610,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,2560,20470,7650,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,5120,40950,8690,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,10240,81910,9730,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,20480,163830,10770,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,40960,327670,11810,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,81920,655350,12850,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,163840,1310710,13890,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,327680,2621430,14930,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,655360,5242870,15970,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,1310720,10485750,17010,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,2621440,20971510,18050,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,105,800,1200,0,0,0,0,0,0 +129,Armor,2,3,0,1400,255,800,1200,0,0,0,0,0,0 +130,Armor,2,4,20,3000,1005,800,1200,2500,3500,2500,3500,1200,1800 +131,Armor,2,5,40,6200,2115,800,1200,0,0,0,0,0,0 +132,Armor,2,6,80,12600,3675,800,1200,0,0,0,0,0,0 +133,Armor,2,7,160,25400,5235,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,320,51000,6795,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,640,102200,8355,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,1280,204600,9915,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,2560,409400,11475,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,5120,819000,13035,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,10240,1638200,14595,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,20480,3276600,16155,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,40960,6553400,17715,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,81920,13107000,19275,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,163840,26214200,20835,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,327680,52428600,22395,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,655360,104857400,23955,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,1310720,209715000,25515,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,2621440,419430200,27075,800,1200,800,1200,800,1200,400,600 +148,Armor,3,1,0,4000,60,800,1200,0,0,0,0,0,0 +149,Armor,3,2,0,12000,210,800,1200,0,0,0,0,0,0 +150,Armor,3,3,0,28000,510,800,1200,0,0,0,0,0,0 +151,Armor,3,4,20,60000,2010,800,1200,2500,3500,2500,3500,1200,1800 +152,Armor,3,5,40,124000,4230,800,1200,0,0,0,0,0,0 +153,Armor,3,6,80,252000,7350,800,1200,0,0,0,0,0,0 +154,Armor,3,7,160,508000,10470,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,320,1020000,13590,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,640,2044000,16710,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,1280,4092000,19830,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,2560,8188000,22950,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,5120,16380000,26070,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,10240,32764000,29190,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,20480,65532000,32310,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,40960,131068000,35430,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,81920,262140000,38550,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,163840,524284000,41670,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,327680,1048572000,44790,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,655360,2097148000,47910,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,1310720,4194300000,51030,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,2621440,8388604000,54150,800,1200,800,1200,800,1200,400,600 +169,Armor,4,1,0,150000,130,800,1200,0,0,0,0,0,0 +170,Armor,4,2,0,300000,455,800,1200,0,0,0,0,0,0 +171,Armor,4,3,0,600000,1105,800,1200,0,0,0,0,0,0 +172,Armor,4,4,20,1200000,4355,800,1200,2500,3500,2500,3500,1200,1800 +173,Armor,4,5,40,2400000,9165,800,1200,0,0,0,0,0,0 +174,Armor,4,6,80,4800000,15925,800,1200,0,0,0,0,0,0 +175,Armor,4,7,160,9600000,22685,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,320,19200000,29445,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,640,38400000,36205,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,1280,76800000,42965,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,2560,153600000,49725,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,5120,307200000,56485,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,10240,614400000,63245,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,20480,1228800000,70005,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,40960,2457600000,76765,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,81920,4915200000,83525,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,163840,9830400000,90285,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,327680,19660800000,97045,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,655360,39321600000,103805,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,1310720,78643200000,110565,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,2621440,157286400000,117325,800,1200,800,1200,800,1200,400,600 +190,Armor,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +191,Armor,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +192,Armor,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +193,Armor,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +194,Armor,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +195,Armor,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +196,Armor,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +197,Armor,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +198,Armor,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +199,Armor,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +200,Armor,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +201,Armor,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +202,Armor,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +203,Armor,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +204,Armor,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +205,Armor,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +206,Armor,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +207,Armor,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +208,Armor,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +209,Armor,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +210,Armor,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +211,Belt,1,1,0,10,20,800,1200,0,0,0,0,0,0 +212,Belt,1,2,0,30,70,800,1200,0,0,0,0,0,0 +213,Belt,1,3,0,70,170,800,1200,0,0,0,0,0,0 +214,Belt,1,4,20,150,670,800,1200,2500,3500,2500,3500,1200,1800 +215,Belt,1,5,40,310,1410,800,1200,0,0,0,0,0,0 +216,Belt,1,6,80,630,2450,800,1200,0,0,0,0,0,0 +217,Belt,1,7,160,1270,3490,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,320,2550,4530,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,640,5110,5570,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,1280,10230,6610,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,2560,20470,7650,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,5120,40950,8690,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,10240,81910,9730,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,20480,163830,10770,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,40960,327670,11810,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,81920,655350,12850,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,163840,1310710,13890,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,327680,2621430,14930,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,655360,5242870,15970,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,1310720,10485750,17010,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,2621440,20971510,18050,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,105,800,1200,0,0,0,0,0,0 +234,Belt,2,3,0,1400,255,800,1200,0,0,0,0,0,0 +235,Belt,2,4,20,3000,1005,800,1200,2500,3500,2500,3500,1200,1800 +236,Belt,2,5,40,6200,2115,800,1200,0,0,0,0,0,0 +237,Belt,2,6,80,12600,3675,800,1200,0,0,0,0,0,0 +238,Belt,2,7,160,25400,5235,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,320,51000,6795,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,640,102200,8355,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,1280,204600,9915,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,2560,409400,11475,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,5120,819000,13035,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,10240,1638200,14595,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,20480,3276600,16155,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,40960,6553400,17715,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,81920,13107000,19275,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,163840,26214200,20835,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,327680,52428600,22395,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,655360,104857400,23955,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,1310720,209715000,25515,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,2621440,419430200,27075,800,1200,800,1200,800,1200,400,600 +253,Belt,3,1,0,4000,60,800,1200,0,0,0,0,0,0 +254,Belt,3,2,0,12000,210,800,1200,0,0,0,0,0,0 +255,Belt,3,3,0,28000,510,800,1200,0,0,0,0,0,0 +256,Belt,3,4,20,60000,2010,800,1200,2500,3500,2500,3500,1200,1800 +257,Belt,3,5,40,124000,4230,800,1200,0,0,0,0,0,0 +258,Belt,3,6,80,252000,7350,800,1200,0,0,0,0,0,0 +259,Belt,3,7,160,508000,10470,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,320,1020000,13590,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,640,2044000,16710,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,1280,4092000,19830,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,2560,8188000,22950,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,5120,16380000,26070,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,10240,32764000,29190,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,20480,65532000,32310,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,40960,131068000,35430,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,81920,262140000,38550,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,163840,524284000,41670,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,327680,1048572000,44790,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,655360,2097148000,47910,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,1310720,4194300000,51030,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,2621440,8388604000,54150,800,1200,800,1200,800,1200,400,600 +274,Belt,4,1,0,150000,130,800,1200,0,0,0,0,0,0 +275,Belt,4,2,0,300000,455,800,1200,0,0,0,0,0,0 +276,Belt,4,3,0,600000,1105,800,1200,0,0,0,0,0,0 +277,Belt,4,4,20,1200000,4355,800,1200,2500,3500,2500,3500,1200,1800 +278,Belt,4,5,40,2400000,9165,800,1200,0,0,0,0,0,0 +279,Belt,4,6,80,4800000,15925,800,1200,0,0,0,0,0,0 +280,Belt,4,7,160,9600000,22685,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,320,19200000,29445,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,640,38400000,36205,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,1280,76800000,42965,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,2560,153600000,49725,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,5120,307200000,56485,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,10240,614400000,63245,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,20480,1228800000,70005,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,40960,2457600000,76765,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,81920,4915200000,83525,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,163840,9830400000,90285,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,327680,19660800000,97045,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,655360,39321600000,103805,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,1310720,78643200000,110565,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,2621440,157286400000,117325,800,1200,800,1200,800,1200,400,600 +295,Belt,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +296,Belt,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +297,Belt,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +298,Belt,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +299,Belt,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +300,Belt,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +301,Belt,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +302,Belt,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +303,Belt,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +304,Belt,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +305,Belt,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +306,Belt,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +307,Belt,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +308,Belt,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +309,Belt,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +310,Belt,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +311,Belt,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +312,Belt,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +313,Belt,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +314,Belt,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +315,Belt,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +316,Necklace,1,1,0,10,25,800,1200,0,0,0,0,0,0 +317,Necklace,1,2,0,30,87,800,1200,0,0,0,0,0,0 +318,Necklace,1,3,0,70,212,800,1200,0,0,0,0,0,0 +319,Necklace,1,4,20,150,837,800,1200,2500,3500,2500,3500,1200,1800 +320,Necklace,1,5,40,310,1762,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,80,630,3062,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,160,1270,4362,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,320,2550,5662,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,640,5110,6962,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,1280,10230,8262,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,2560,20470,9562,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,5120,40950,10862,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,10240,81910,12162,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,20480,163830,13462,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,40960,327670,14762,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,81920,655350,16062,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,163840,1310710,17362,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,327680,2621430,18662,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,655360,5242870,19962,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,1310720,10485750,21262,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,2621440,20971510,22562,800,1200,800,1200,800,1200,400,600 +337,Necklace,2,1,0,200,37,800,1200,0,0,0,0,0,0 +338,Necklace,2,2,0,600,130,800,1200,0,0,0,0,0,0 +339,Necklace,2,3,0,1400,317,800,1200,0,0,0,0,0,0 +340,Necklace,2,4,20,3000,1254,800,1200,2500,3500,2500,3500,1200,1800 +341,Necklace,2,5,40,6200,2641,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,80,12600,4591,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,160,25400,6541,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,320,51000,8491,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,640,102200,10441,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,1280,204600,12391,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,2560,409400,14341,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,5120,819000,16291,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,10240,1638200,18241,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,20480,3276600,20191,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,40960,6553400,22141,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,81920,13107000,24091,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,163840,26214200,26041,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,327680,52428600,27991,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,655360,104857400,29941,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,1310720,209715000,31891,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,2621440,419430200,33841,800,1200,800,1200,800,1200,400,600 +358,Necklace,3,1,0,4000,75,800,1200,0,0,0,0,0,0 +359,Necklace,3,2,0,12000,262,800,1200,0,0,0,0,0,0 +360,Necklace,3,3,0,28000,637,800,1200,0,0,0,0,0,0 +361,Necklace,3,4,20,60000,2512,800,1200,2500,3500,2500,3500,1200,1800 +362,Necklace,3,5,40,124000,5287,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,80,252000,9187,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,160,508000,13087,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,320,1020000,16987,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,640,2044000,20887,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,1280,4092000,24787,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,2560,8188000,28687,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,5120,16380000,32587,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,10240,32764000,36487,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,20480,65532000,40387,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,40960,131068000,44287,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,81920,262140000,48187,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,163840,524284000,52087,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,327680,1048572000,55987,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,655360,2097148000,59887,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,1310720,4194300000,63787,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,2621440,8388604000,67687,800,1200,800,1200,800,1200,400,600 +379,Necklace,4,1,0,150000,162,800,1200,0,0,0,0,0,0 +380,Necklace,4,2,0,300000,568,800,1200,0,0,0,0,0,0 +381,Necklace,4,3,0,600000,1380,800,1200,0,0,0,0,0,0 +382,Necklace,4,4,20,1200000,5442,800,1200,2500,3500,2500,3500,1200,1800 +383,Necklace,4,5,40,2400000,11454,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,80,4800000,19904,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,160,9600000,28354,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,320,19200000,36804,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,640,38400000,45254,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,1280,76800000,53704,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,2560,153600000,62154,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,5120,307200000,70604,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,10240,614400000,79054,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,20480,1228800000,87504,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,40960,2457600000,95954,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,81920,4915200000,104404,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,163840,9830400000,112854,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,327680,19660800000,121304,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,655360,39321600000,129754,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,1310720,78643200000,138204,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,2621440,157286400000,146654,800,1200,800,1200,800,1200,400,600 +400,Necklace,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +401,Necklace,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +402,Necklace,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +403,Necklace,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +404,Necklace,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +405,Necklace,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +406,Necklace,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +407,Necklace,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +408,Necklace,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +409,Necklace,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +410,Necklace,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +411,Necklace,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +412,Necklace,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +413,Necklace,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +414,Necklace,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +415,Necklace,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +416,Necklace,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +417,Necklace,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +418,Necklace,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +419,Necklace,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +420,Necklace,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +421,Ring,1,1,0,10,30,800,1200,0,0,0,0,0,0 +422,Ring,1,2,0,30,105,800,1200,0,0,0,0,0,0 +423,Ring,1,3,0,70,255,800,1200,0,0,0,0,0,0 +424,Ring,1,4,20,150,1005,800,1200,2500,3500,2500,3500,1200,1800 +425,Ring,1,5,40,310,2115,800,1200,0,0,0,0,0,0 +426,Ring,1,6,80,630,3675,800,1200,0,0,0,0,0,0 +427,Ring,1,7,160,1270,5235,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,320,2550,6795,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,640,5110,8355,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,1280,10230,9915,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,2560,20470,11475,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,5120,40950,13035,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,10240,81910,14595,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,20480,163830,16155,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,40960,327670,17715,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,81920,655350,19275,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,163840,1310710,20835,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,327680,2621430,22395,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,655360,5242870,23955,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,1310720,10485750,25515,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,2621440,20971510,27075,800,1200,800,1200,800,1200,400,600 +442,Ring,2,1,0,200,45,800,1200,0,0,0,0,0,0 +443,Ring,2,2,0,600,157,800,1200,0,0,0,0,0,0 +444,Ring,2,3,0,1400,382,800,1200,0,0,0,0,0,0 +445,Ring,2,4,20,3000,1507,800,1200,2500,3500,2500,3500,1200,1800 +446,Ring,2,5,40,6200,3172,800,1200,0,0,0,0,0,0 +447,Ring,2,6,80,12600,5512,800,1200,0,0,0,0,0,0 +448,Ring,2,7,160,25400,7852,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,320,51000,10192,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,640,102200,12532,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,1280,204600,14872,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,2560,409400,17212,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,5120,819000,19552,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,10240,1638200,21892,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,20480,3276600,24232,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,40960,6553400,26572,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,81920,13107000,28912,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,163840,26214200,31252,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,327680,52428600,33592,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,655360,104857400,35932,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,1310720,209715000,38272,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,2621440,419430200,40612,800,1200,800,1200,800,1200,400,600 +463,Ring,3,1,0,4000,90,800,1200,0,0,0,0,0,0 +464,Ring,3,2,0,12000,315,800,1200,0,0,0,0,0,0 +465,Ring,3,3,0,28000,765,800,1200,0,0,0,0,0,0 +466,Ring,3,4,20,60000,3015,800,1200,2500,3500,2500,3500,1200,1800 +467,Ring,3,5,40,124000,6345,800,1200,0,0,0,0,0,0 +468,Ring,3,6,80,252000,11025,800,1200,0,0,0,0,0,0 +469,Ring,3,7,160,508000,15705,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,320,1020000,20385,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,640,2044000,25065,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,1280,4092000,29745,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,2560,8188000,34425,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,5120,16380000,39105,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,10240,32764000,43785,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,20480,65532000,48465,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,40960,131068000,53145,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,81920,262140000,57825,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,163840,524284000,62505,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,327680,1048572000,67185,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,655360,2097148000,71865,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,1310720,4194300000,76545,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,2621440,8388604000,81225,800,1200,800,1200,800,1200,400,600 +484,Ring,4,1,0,150000,195,800,1200,0,0,0,0,0,0 +485,Ring,4,2,0,300000,682,800,1200,0,0,0,0,0,0 +486,Ring,4,3,0,600000,1657,800,1200,0,0,0,0,0,0 +487,Ring,4,4,20,1200000,6532,800,1200,2500,3500,2500,3500,1200,1800 +488,Ring,4,5,40,2400000,13747,800,1200,0,0,0,0,0,0 +489,Ring,4,6,80,4800000,23887,800,1200,0,0,0,0,0,0 +490,Ring,4,7,160,9600000,34027,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,320,19200000,44167,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,640,38400000,54307,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,1280,76800000,64447,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,2560,153600000,74587,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,5120,307200000,84727,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,10240,614400000,94867,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,20480,1228800000,105007,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,40960,2457600000,115147,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,81920,4915200000,125287,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,163840,9830400000,135427,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,327680,19660800000,145567,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,655360,39321600000,155707,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,1310720,78643200000,165847,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,2621440,157286400000,175987,800,1200,800,1200,800,1200,400,600 +505,Ring,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +506,Ring,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +507,Ring,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +508,Ring,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +509,Ring,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +510,Ring,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +511,Ring,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +512,Ring,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +513,Ring,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +514,Ring,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +515,Ring,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +516,Ring,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +517,Ring,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +518,Ring,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +519,Ring,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +520,Ring,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +521,Ring,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +522,Ring,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +523,Ring,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +524,Ring,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +525,Ring,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +526,Aura,1,1,0,2,1,600,700,600,700,0,0,0,0 +527,Aura,1,2,0,4,1,600,700,600,700,0,0,0,0 +528,Aura,1,3,0,8,1,600,700,600,700,600,700,800,900 +529,Aura,1,4,0,16,1,600,700,600,700,0,0,0,0 +530,Aura,1,5,0,32,1,600,700,600,700,0,0,0,0 +531,Aura,1,6,0,64,1,600,700,600,700,600,700,800,900 +532,Aura,1,7,0,128,1,600,700,600,700,0,0,0,0 +533,Aura,1,8,0,256,1,600,700,600,700,0,0,0,0 +534,Aura,1,9,0,512,1,600,700,600,700,600,700,800,900 +535,Aura,1,10,0,1024,1,600,700,600,700,300,400,200,200 +536,Aura,1,11,0,2048,1,600,700,600,700,300,400,200,200 +537,Aura,1,12,0,4096,1,600,700,600,700,300,400,200,200 +538,Aura,1,13,0,8192,1,600,700,600,700,300,400,200,200 +539,Aura,1,14,0,16384,1,600,700,600,700,300,400,200,200 +540,Aura,1,15,0,32768,1,600,700,600,700,300,400,200,200 +541,Aura,1,16,0,65536,1,600,700,600,700,300,400,200,200 +542,Aura,1,17,0,131072,1,600,700,600,700,300,400,200,200 +543,Aura,1,18,0,262144,1,600,700,600,700,300,400,200,200 +544,Aura,1,19,0,524288,1,600,700,600,700,300,400,200,200 +545,Aura,1,20,0,1048576,1,600,700,600,700,300,400,200,200 +546,Aura,1,21,0,2097152,1,600,700,600,700,300,400,200,200 +547,Aura,2,1,0,40,1,600,700,600,700,0,0,0,0 +548,Aura,2,2,0,80,1,600,700,600,700,0,0,0,0 +549,Aura,2,3,0,160,1,600,700,600,700,800,900,800,900 +550,Aura,2,4,0,320,1,600,700,600,700,0,0,0,0 +551,Aura,2,5,0,640,1,600,700,600,700,0,0,0,0 +552,Aura,2,6,0,1280,1,600,700,600,700,800,900,800,900 +553,Aura,2,7,0,2560,1,600,700,600,700,0,0,0,0 +554,Aura,2,8,0,5120,1,600,700,600,700,0,0,0,0 +555,Aura,2,9,0,10240,1,600,700,600,700,800,900,800,900 +556,Aura,2,10,0,20480,1,600,700,600,700,500,600,200,200 +557,Aura,2,11,0,40960,1,600,700,600,700,500,600,200,200 +558,Aura,2,12,0,81920,1,600,700,600,700,500,600,200,200 +559,Aura,2,13,0,163840,1,600,700,600,700,500,600,200,200 +560,Aura,2,14,0,327680,1,600,700,600,700,500,600,200,200 +561,Aura,2,15,0,655360,1,600,700,600,700,500,600,200,200 +562,Aura,2,16,0,1310720,1,600,700,600,700,500,600,200,200 +563,Aura,2,17,0,2621440,1,600,700,600,700,500,600,200,200 +564,Aura,2,18,0,5242880,1,600,700,600,700,500,600,200,200 +565,Aura,2,19,0,10485760,1,600,700,600,700,500,600,200,200 +566,Aura,2,20,0,20971520,1,600,700,600,700,500,600,200,200 +567,Aura,2,21,0,41943040,1,600,700,600,700,500,600,200,200 +568,Aura,3,1,0,800,1,600,700,600,700,0,0,0,0 +569,Aura,3,2,0,1600,1,600,700,600,700,0,0,0,0 +570,Aura,3,3,0,3200,1,600,700,600,700,1000,1100,800,900 +571,Aura,3,4,0,6400,1,600,700,600,700,0,0,0,0 +572,Aura,3,5,0,12800,1,600,700,600,700,0,0,0,0 +573,Aura,3,6,0,25600,1,600,700,600,700,1000,1100,800,900 +574,Aura,3,7,0,51200,1,600,700,600,700,0,0,0,0 +575,Aura,3,8,0,102400,1,600,700,600,700,0,0,0,0 +576,Aura,3,9,0,204800,1,600,700,600,700,1000,1100,800,900 +577,Aura,3,10,0,409600,1,600,700,600,700,800,900,200,200 +578,Aura,3,11,0,819200,1,600,700,600,700,800,900,200,200 +579,Aura,3,12,0,1638400,1,600,700,600,700,800,900,200,200 +580,Aura,3,13,0,3276800,1,600,700,600,700,800,900,200,200 +581,Aura,3,14,0,6553600,1,600,700,600,700,800,900,200,200 +582,Aura,3,15,0,13107200,1,600,700,600,700,800,900,200,200 +583,Aura,3,16,0,26214400,1,600,700,600,700,800,900,200,200 +584,Aura,3,17,0,52428800,1,600,700,600,700,800,900,200,200 +585,Aura,3,18,0,104857600,1,600,700,600,700,800,900,200,200 +586,Aura,3,19,0,209715200,1,600,700,600,700,800,900,200,200 +587,Aura,3,20,0,419430400,1,600,700,600,700,800,900,200,200 +588,Aura,3,21,0,838860800,1,600,700,600,700,800,900,200,200 +589,Aura,4,1,0,8000,1,700,800,700,800,0,0,0,0 +590,Aura,4,2,0,16000,1,800,900,800,900,0,0,0,0 +591,Aura,4,3,0,32000,1,900,1000,900,1000,3000,3100,800,900 +592,Aura,4,4,0,64000,1,1000,1100,1000,1100,0,0,0,0 +593,Aura,4,5,0,128000,1,1500,1600,1500,1600,0,0,0,0 +594,Aura,4,6,0,256000,1,2000,2100,2000,2100,3000,3100,800,900 +595,Aura,4,7,0,512000,1,1800,1900,1800,1900,0,0,0,0 +596,Aura,4,8,0,1024000,1,1600,1700,1600,1700,0,0,0,0 +597,Aura,4,9,0,2048000,1,1400,1500,1400,1500,3000,3100,800,900 +598,Aura,4,10,0,4096000,1,1200,1300,1200,1300,1200,1300,200,200 +599,Aura,4,11,0,8192000,1,1000,1100,1000,1100,1200,1300,200,200 +600,Aura,4,12,0,16384000,1,1000,1100,1000,1100,1200,1300,200,200 +601,Aura,4,13,0,32768000,1,1000,1100,1000,1100,1200,1300,200,200 +602,Aura,4,14,0,65536000,1,1000,1100,1000,1100,1200,1300,200,200 +603,Aura,4,15,0,131072000,1,1000,1100,1000,1100,1200,1300,200,200 +604,Aura,4,16,0,262144000,1,1000,1100,1000,1100,1200,1300,200,200 +605,Aura,4,17,0,524288000,1,1000,1100,1000,1100,1200,1300,200,200 +606,Aura,4,18,0,1048576000,1,1000,1100,1000,1100,1200,1300,200,200 +607,Aura,4,19,0,2097152000,1,1000,1100,1000,1100,1200,1300,200,200 +608,Aura,4,20,0,4194304000,1,1000,1100,1000,1100,1200,1300,200,200 +609,Aura,4,21,0,8388608000,1,1000,1100,1000,1100,1200,1300,200,200 +610,Aura,5,1,0,68000,1,700,800,700,800,0,0,0,0 +611,Aura,5,2,0,115600,1,800,900,800,900,0,0,0,0 +612,Aura,5,3,0,196520,1,900,1000,900,1000,3600,3700,800,900 +613,Aura,5,4,0,334084,1,1000,1100,1000,1100,0,0,0,0 +614,Aura,5,5,0,567942,1,1500,1600,1500,1600,0,0,0,0 +615,Aura,5,6,0,965501,1,2000,2100,2000,2100,3600,3700,800,900 +616,Aura,5,7,0,1641351,1,1800,1900,1800,1900,0,0,0,0 +617,Aura,5,8,0,2790296,1,1600,1700,1600,1700,0,0,0,0 +618,Aura,5,9,0,4743503,1,1400,1500,1400,1500,3600,3700,800,900 +619,Aura,5,10,0,8063955,1,1200,1300,1200,1300,1500,1600,200,200 +620,Aura,5,11,0,13708723,1,1000,1100,1000,1100,1500,1600,200,200 +621,Aura,5,12,0,23304829,1,1000,1100,1000,1100,1500,1600,200,200 +622,Aura,5,13,0,39618209,1,1000,1100,1000,1100,1500,1600,200,200 +623,Aura,5,14,0,67350955,1,1000,1100,1000,1100,1500,1600,200,200 +624,Aura,5,15,0,114496623,1,1000,1100,1000,1100,1500,1600,200,200 +625,Aura,5,16,0,194644259,1,1000,1100,1000,1100,1500,1600,200,200 +626,Aura,5,17,0,330895240,1,1000,1100,1000,1100,1500,1600,200,200 +627,Aura,5,18,0,562521908,1,1000,1100,1000,1100,1500,1600,200,200 +628,Aura,5,19,0,956287243,1,1000,1100,1000,1100,1500,1600,200,200 +629,Aura,5,20,0,1625688313,1,1000,1100,1000,1100,1500,1600,200,200 +630,Aura,5,21,0,2763670132,1,1000,1100,1000,1100,1500,1600,200,200"; + } +} diff --git a/.Lib9c.Tests/Fixtures/TableCSV/EquipmentItemSheetFixture.cs b/.Lib9c.Tests/Fixtures/TableCSV/EquipmentItemSheetFixture.cs new file mode 100644 index 0000000000..d88c358904 --- /dev/null +++ b/.Lib9c.Tests/Fixtures/TableCSV/EquipmentItemSheetFixture.cs @@ -0,0 +1,1425 @@ +namespace Lib9c.Tests.Fixtures.TableCSV +{ + public static class EquipmentItemSheetFixture + { + public const string EquipmentItemRecipeSheetWithMimisbrunnr = @"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,5,3,373,374,375,0,Weapon +2,10111000,303000,2,0,0,5,11,1,2,3,2,Weapon +3,10112000,303000,2,0,0,5,19,4,5,6,2,Weapon +4,10113000,303000,8,0,0,155,51,7,8,9,19,Weapon +5,10114000,303000,12,0,0,477,99,10,11,12,64,Weapon +6,10120000,303001,4,0,0,37,27,376,377,378,8,Weapon +7,10121000,303001,4,0,0,45,29,13,14,15,11,Weapon +8,10122000,303001,6,0,0,89,39,16,17,18,15,Weapon +9,10123000,303001,15,0,0,1167,114,19,20,21,1056,Weapon +10,10124000,303001,24,0,0,7155,174,22,23,24,22560,Weapon +11,10130000,303002,7,0,0,241,63,379,380,381,234,Weapon +12,10131000,303002,8,0,0,257,66,25,26,27,279,Weapon +13,10132000,303002,9,0,0,329,78,28,29,30,317,Weapon +14,10133000,303002,27,0,0,9807,190,31,32,33,41040,Weapon +15,10134000,303002,47,0,0,21585,204,34,35,36,167040,Weapon +16,10130001,303002,17,0,0,1482,130,382,383,384,8340,Weapon +17,10131001,303002,19,0,0,1643,138,37,38,39,14520,Weapon +18,10132001,303002,21,0,0,5190,154,40,41,42,32040,Weapon +19,10133001,303002,61,0,0,28050,220,43,44,45,216180,Weapon +20,10134001,303002,73,0,0,34302,236,46,47,48,495900,Weapon +21,10140000,303003,250,0,0,40000,299,101400001,101400002,101400003,1404000,Weapon +22,10141000,303003,120,0,0,20000,255,101410001,101410002,101410003,1532100,Weapon +23,10142000,303003,120,0,0,24000,265,101420001,101420002,101420003,1532100,Weapon +24,10143000,303003,180,0,0,28000,277,101430001,101430002,101430003,1532100,Weapon +25,10144000,303003,180,0,0,32000,290,101440001,101440002,101440003,1532100,Weapon +26,10150000,303004,360,0,0,3000,330,101500001,101500002,,500000,Weapon +27,10151000,303004,360,0,0,3000,305,101510001,101510002,,500000,Weapon +28,10152000,303004,360,0,0,3000,305,101520001,101520002,101520003,500000,Weapon +29,10153000,303004,360,0,0,3000,330,101530001,101530002,,500000,Weapon +30,10154000,303004,360,0,0,3000,330,101540001,101540002,101540003,500000,Weapon +31,10140001,303003,85,0,0,60375,999,388,389,390,1533000,Weapon +32,10141001,303003,85,0,0,62115,999,61,62,63,1648200,Weapon +33,10142001,303003,86,0,0,63915,999,64,65,66,1664100,Weapon +34,10143001,303003,86,0,0,65775,999,67,68,69,1664100,Weapon +35,10144001,303003,87,0,0,67695,999,70,71,72,1686900,Weapon +36,10150001,303004,117,0,0,156975,999,394,395,396,5619000,Weapon +37,10151001,303004,118,0,0,160815,999,85,86,87,5823300,Weapon +38,10152001,303004,119,0,0,164715,999,88,89,90,5876100,Weapon +39,10153001,303004,121,0,0,168675,999,91,92,93,5974800,Weapon +40,10154001,303004,122,0,0,172695,999,94,95,96,6020700,Weapon +41,10155000,303004,125,0,0,180915,999,397,398,399,6003000,Weapon +42,10210000,303100,2,0,0,5,6,400,401,402,1,Armor +43,10211000,303100,2,0,0,5,13,97,98,99,2,Armor +44,10212000,303100,3,0,0,23,24,100,101,102,3,Armor +45,10213000,303100,10,0,0,210,59,103,104,105,23,Armor +46,10214000,303100,14,0,0,1076,108,106,107,108,742,Armor +47,10220000,303101,5,0,0,70,35,403,404,405,5,Armor +48,10221000,303101,5,0,0,79,37,109,110,111,8,Armor +49,10222000,303101,7,0,0,120,45,112,113,114,11,Armor +50,10223000,303101,16,0,0,1341,123,115,116,117,928,Armor +51,10224000,303101,26,0,0,8361,182,118,119,120,23920,Armor +52,10230000,303102,9,0,0,310,75,406,407,408,300,Armor +53,10231000,303102,10,0,0,348,81,121,122,123,348,Armor +54,10232000,303102,11,0,0,432,93,124,125,126,387,Armor +55,10233000,303102,40,0,0,18426,201,127,128,129,140400,Armor +56,10234000,303102,52,0,0,23991,208,130,131,132,182520,Armor +57,10230001,303102,20,0,0,1824,146,409,410,411,9600,Armor +58,10231001,303102,22,0,0,5463,158,133,134,135,33000,Armor +59,10232001,303102,23,0,0,6189,166,136,137,138,35040,Armor +60,10233001,303102,67,0,0,31056,228,139,140,141,455400,Armor +61,10234001,303102,76,0,0,36195,246,142,143,144,889200,Armor +62,10240000,303103,250,0,0,40000,294,102400001,102400002,102400003,1166700,Armor +63,10241000,303103,120,0,0,20000,261,102410001,102410002,102410003,1173660,Armor +64,10242000,303103,120,0,0,24000,270,102420001,102420002,102420003,1188720,Armor +65,10243000,303103,180,0,0,28000,280,102430001,102430002,102430003,1345500,Armor +66,10244000,303103,180,0,0,32000,287,102440001,102440002,102440003,1345500,Armor +67,10250001,303104,360,0,0,3000,335,102500011,102500012,,500000,Armor +68,10251001,303104,360,0,0,3000,315,102510011,102510012,,500000,Armor +69,10252001,303104,360,0,0,3000,315,102520011,102520012,102520013,1000000,Armor +70,10253001,303104,360,0,0,3000,335,102530011,102530012,,1000000,Armor +71,10254001,303104,360,0,0,3000,335,102540011,102540012,102540013,1000000,Armor +72,10240001,303103,82,0,0,52575,999,415,416,417,1303800,Armor +73,10241001,303103,82,0,0,54015,999,157,158,159,1414500,Armor +74,10242001,303103,83,0,0,55515,999,160,161,162,1433100,Armor +75,10243001,303103,83,0,0,57075,999,163,164,165,1433100,Armor +76,10244001,303103,84,0,0,58695,999,166,167,168,1449000,Armor +77,10250000,303104,88,0,0,69675,999,418,419,420,4039200,Armor +78,10251000,303104,88,0,0,71715,999,169,170,171,4158000,Armor +79,10252000,303104,89,0,0,73815,999,172,173,174,4206600,Armor +80,10253000,303104,90,0,0,75975,999,175,176,177,4252500,Armor +81,10254000,303104,90,0,0,78195,999,178,179,180,4441500,Armor +82,10255000,303104,123,0,0,176775,999,424,425,426,5646600,Armor +83,10310000,303200,2,0,0,5,9,427,428,429,1,Belt +84,10311000,303200,2,0,0,5,20,193,194,195,2,Belt +85,10312000,303200,4,0,0,30,25,196,197,198,5,Belt +86,10313000,303200,12,0,0,274,69,199,200,201,26,Belt +87,10314000,303200,18,0,0,1560,134,202,203,204,954,Belt +88,10320000,303201,6,0,0,99,41,430,431,432,12,Belt +89,10321000,303201,6,0,0,109,43,205,206,207,15,Belt +90,10322000,303201,9,0,0,181,55,208,209,210,22,Belt +91,10323000,303201,22,0,0,5796,162,211,212,213,2992,Belt +92,10324000,303201,45,0,0,20472,203,214,215,216,122220,Belt +93,10330000,303202,10,0,0,389,87,433,434,435,330,Belt +94,10331000,303202,11,0,0,410,90,217,218,219,387,Belt +95,10332000,303202,14,0,0,1119,111,220,221,222,4872,Belt +96,10333000,303202,58,0,0,26637,216,223,224,225,203580,Belt +97,10334000,303202,150,0,0,30000,251,226,227,228,737100,Belt +98,10340000,303203,26,0,0,9054,186,436,437,438,49608,Belt +99,10341000,303203,28,0,0,10620,194,229,230,231,57960,Belt +100,10342000,303203,76,0,0,36015,240,232,233,234,1128600,Belt +101,10343000,303203,76,0,0,36015,240,235,236,237,1128600,Belt +102,10344000,303203,76,0,0,36015,240,238,239,240,1128600,Belt +103,10350000,303203,250,0,0,40000,296,103500001,103500002,103500003,4177800,Belt +104,10351000,303203,120,0,0,20000,260,103510001,103510002,103510003,4347000,Belt +105,10352000,303203,120,0,0,24000,269,103520001,103520002,103520003,4395600,Belt +106,10353000,303203,180,0,0,28000,278,103530001,103530002,103530003,4441500,Belt +107,10354000,303203,180,0,0,32000,287,103540001,103540002,103540003,4638900,Belt +108,10410000,303300,2,0,0,5,15,442,443,444,1,Necklace +109,10411000,303300,2,0,0,11,21,253,254,255,2,Necklace +110,10412000,303300,4,0,0,53,31,256,257,258,5,Necklace +111,10413000,303300,15,0,0,368,84,259,260,261,32,Necklace +112,10414000,303300,20,0,0,4977,150,262,263,264,1060,Necklace +113,10420000,303301,7,0,0,131,47,445,446,447,14,Necklace +114,10421000,303301,8,0,0,143,49,265,266,267,20,Necklace +115,10422000,303301,10,0,0,225,61,268,269,270,25,Necklace +116,10423000,303301,25,0,0,7728,178,271,272,273,3472,Necklace +117,10424000,303301,150,0,0,19419,202,274,275,276,116880,Necklace +118,10430000,303302,13,0,0,1005,102,448,449,450,4320,Necklace +119,10431000,303302,13,0,0,1038,105,277,278,279,4560,Necklace +120,10432000,303302,17,0,0,1409,126,280,281,282,5952,Necklace +121,10433000,303302,55,0,0,25284,212,283,284,285,195120,Necklace +122,10434000,303302,70,0,0,32649,232,286,287,288,472500,Necklace +123,10440000,303303,77,0,0,9093,249,451,452,453,729000,Necklace +124,10441000,303303,77,0,0,36375,249,289,290,291,1528200,Necklace +125,10442000,303303,77,0,0,36375,249,292,293,294,1528200,Necklace +126,10443000,303303,77,0,0,36375,249,295,296,297,1528200,Necklace +127,10444000,303303,77,0,0,36375,249,298,299,300,1528200,Necklace +128,10450000,303303,250,0,0,40000,293,104500001,104500002,104500003,4361400,Necklace +129,10451000,303303,120,0,0,20000,255,104510001,104510002,104510003,4536000,Necklace +130,10452000,303303,120,0,0,24000,264,104520001,104520002,104520003,4584600,Necklace +131,10453000,303303,180,0,0,28000,274,104530001,104530002,104530003,4630500,Necklace +132,10454000,303303,180,0,0,32000,284,104540001,104540002,104540003,4889100,Necklace +133,10510000,303400,2,0,0,5,17,457,458,459,1,Ring +134,10511000,303400,2,0,0,17,22,313,314,315,2,Ring +135,10512000,303400,5,0,0,61,33,316,317,318,5,Ring +136,10513000,303400,17,0,0,454,96,319,320,321,38,Ring +137,10514000,303400,24,0,0,6642,170,322,323,324,2544,Ring +138,10520000,303401,8,0,0,168,53,460,461,462,16,Ring +139,10521000,303401,9,0,0,195,57,325,326,327,22,Ring +140,10522000,303401,12,0,0,292,72,328,329,330,29,Ring +141,10523000,303401,28,0,0,17493,198,331,332,333,3808,Ring +142,10524000,303401,49,0,0,22758,205,334,335,336,132900,Ring +143,10530000,303402,15,0,0,1220,117,463,464,465,4980,Ring +144,10531000,303402,16,0,0,1278,120,337,338,339,5568,Ring +145,10532000,303402,19,0,0,1731,142,340,341,342,6648,Ring +146,10533000,303402,64,0,0,29523,224,343,344,345,748800,Ring +147,10534000,303402,76,0,0,36075,243,346,347,348,889200,Ring +148,10540000,303403,250,0,0,40000,298,105400001,105400002,105400003,1170000,Ring +149,10541000,303403,120,0,0,20000,258,105410001,105410002,105410003,1160400,Ring +150,10542000,303403,120,0,0,24000,268,105420001,105420002,105420003,1160760,Ring +151,10543000,303403,180,0,0,28000,275,105430001,105430002,105430003,1340700,Ring +152,10544000,303403,180,0,0,32000,285,105440001,105440002,105440003,1340700,Ring +153,10550000,303404,360,0,0,3000,340,105500001,105500002,,500000,Ring +154,10551000,303404,360,0,0,3000,325,105510001,105510002,,500000,Ring +155,10552000,303404,360,0,0,3000,325,105520001,105520002,105520003,1000000,Ring +156,10553000,303404,360,0,0,3000,340,105530001,105530002,,1000000,Ring +157,10554000,303404,360,0,0,3000,340,105540001,105540002,105540003,1000000,Ring +158,12001001,600101,100,0,0,10,999,120010011,120010012,120010013,0,Belt +159,12001002,600101,100,0,0,10,999,120010021,120010022,120010023,0,Necklace +160,12001003,600101,50,0,0,10,999,120010031,120010032,120010033,0,Ring +161,10350001,303204,360,0,0,3000,330,103500011,103500012,,500000,Belt +162,10351001,303204,360,0,0,3000,310,103510011,103510012,,500000,Belt +163,10352001,303204,360,0,0,3000,310,103520011,103520012,103520013,1000000,Belt +164,10353001,303204,360,0,0,3000,330,103530011,103530012,,1000000,Belt +165,10354001,303204,360,0,0,3000,330,103540011,103540012,103540013,1000000,Belt +166,10450001,303304,360,0,0,3000,335,104500011,104500012,,500000,Necklace +167,10451001,303304,360,0,0,3000,320,104510011,104510012,,500000,Necklace +168,10452001,303304,360,0,0,3000,320,104520011,104520012,104520013,1000000,Necklace +169,10453001,303304,360,0,0,3000,335,104530011,104530012,,1000000,Necklace +170,10454001,303304,360,0,0,3000,335,104540011,104540012,104540013,1000000,Necklace +171 ,10620000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +172,10630000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +173,10640000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +174,10620001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +175,10630001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +176,10640001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +177,10650001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace"; + + public const string LegacyEnhancementCostSheetV2 = @"id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,success_required_block_index,great_success_required_block_index,fail_required_block_index,base_stat_growth_min,base_stat_growth_max,extra_stat_growth_min,extra_stat_growth_max,extra_skill_damage_growth_min,extra_skill_damage_growth_max,extra_skill_chance_growth_min,extra_skill_chance_growth_max +1,Weapon,1,1,0,7500,2500,0,25,31,50,800,1200,0,0,0,0,0,0 +2,Weapon,1,2,0,7500,2500,0,62,77,50,800,1200,0,0,0,0,0,0 +3,Weapon,1,3,0,7500,2500,0,125,156,50,800,1200,0,0,0,0,0,0 +4,Weapon,1,4,10,7500,2500,0,625,781,50,800,1200,2500,3500,2500,3500,1200,1800 +5,Weapon,1,5,0,7125,2375,500,925,1156,50,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,0,6750,2250,1000,1300,1625,50,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,20,7125,2375,500,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,0,6750,2250,1000,2975,3718,50,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,0,6450,2150,1400,3500,4375,50,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,40,7125,2375,500,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,0,6150,2050,1800,5000,6250,50,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,0,5925,1975,2100,5250,6562,50,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,80,6525,2175,1300,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,0,5700,1900,2400,5750,7187,50,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,0,5475,1825,2700,6000,7500,50,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,160,6000,2000,2000,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,0,5325,1775,2900,6500,8125,50,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,0,5175,1725,3100,6750,8437,50,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,320,5625,1875,2500,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,0,3750,1250,5000,7250,9062,50,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,0,3750,1250,5000,7500,9375,50,800,1200,800,1200,800,1200,400,600 +22,Weapon,2,1,0,7500,2500,0,37,46,50,800,1200,0,0,0,0,0,0 +23,Weapon,2,2,0,7500,2500,0,93,116,50,800,1200,0,0,0,0,0,0 +24,Weapon,2,3,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 +25,Weapon,2,4,20,7500,2500,0,937,1171,50,800,1200,2500,3500,2500,3500,1200,1800 +26,Weapon,2,5,0,7125,2375,500,1387,1733,50,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,0,6750,2250,1000,1950,2437,50,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,40,7125,2375,500,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,0,6750,2250,1000,4462,5577,50,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,0,6450,2150,1400,5250,6562,50,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,80,7125,2375,500,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,0,6150,2050,1800,7500,9375,50,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,0,5925,1975,2100,7875,9843,50,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,160,6525,2175,1300,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,0,5700,1900,2400,8625,10781,50,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,0,5475,1825,2700,9000,11250,50,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,320,6000,2000,2000,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,0,5325,1775,2900,9750,12187,50,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,0,5175,1725,3100,10125,12656,50,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,640,5625,1875,2500,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,0,3750,1250,5000,10875,13593,50,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,0,3750,1250,5000,11250,14062,50,800,1200,800,1200,800,1200,400,600 +43,Weapon,3,1,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 +44,Weapon,3,2,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 +45,Weapon,3,3,0,7500,2500,0,375,468,50,800,1200,0,0,0,0,0,0 +46,Weapon,3,4,30,7500,2500,0,1875,2343,50,800,1200,2500,3500,2500,3500,1200,1800 +47,Weapon,3,5,0,7125,2375,500,2775,3468,50,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,0,6750,2250,1000,3900,4875,50,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,60,7125,2375,500,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,0,6750,2250,1000,8925,11156,50,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,0,6450,2150,1400,10500,13125,50,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,120,7125,2375,500,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,0,6150,2050,1800,15000,18750,50,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,0,5925,1975,2100,15750,19687,50,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,240,6525,2175,1300,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,0,5700,1900,2400,17250,21562,50,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,0,5475,1825,2700,18000,22500,50,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,480,6000,2000,2000,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,0,5325,1775,2900,19500,24375,50,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,0,5175,1725,3100,20250,25312,50,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,960,5625,1875,2500,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,0,3750,1250,5000,21750,27187,50,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,0,3750,1250,5000,22500,28125,50,800,1200,800,1200,800,1200,400,600 +64,Weapon,4,1,0,7500,2500,0,162,202,50,800,1200,0,0,0,0,0,0 +65,Weapon,4,2,0,7500,2500,0,406,507,50,800,1200,0,0,0,0,0,0 +66,Weapon,4,3,0,7500,2500,0,812,1015,50,800,1200,0,0,0,0,0,0 +67,Weapon,4,4,40,7500,2500,0,4062,5077,50,800,1200,2500,3500,2500,3500,1200,1800 +68,Weapon,4,5,0,7125,2375,500,6012,7515,50,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,0,6750,2250,1000,8450,10562,50,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,80,7125,2375,500,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,0,6750,2250,1000,19337,24171,50,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,0,6450,2150,1400,22750,28437,50,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,160,7125,2375,500,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,0,6150,2050,1800,32500,40625,50,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,0,5925,1975,2100,34125,42656,50,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,320,6525,2175,1300,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,0,5700,1900,2400,37375,46718,50,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,0,5475,1825,2700,39000,48750,50,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,640,6000,2000,2000,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,0,5325,1775,2900,42250,52812,50,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,0,5175,1725,3100,43875,54843,50,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,1280,5625,1875,2500,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,0,3750,1250,5000,47125,58906,50,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,0,3750,1250,5000,48750,60937,50,800,1200,800,1200,800,1200,400,600 +85,Weapon,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +86,Weapon,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +87,Weapon,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +88,Weapon,5,4,20,7500,2500,0,3600,7200,0,3500,3600,3500,3600,2000,2000,1500,1500 +89,Weapon,5,5,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +90,Weapon,5,6,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +91,Weapon,5,7,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +92,Weapon,5,8,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +93,Weapon,5,9,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +94,Weapon,5,10,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +95,Weapon,5,11,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +96,Weapon,5,12,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +97,Weapon,5,13,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +98,Weapon,5,14,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +99,Weapon,5,15,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +100,Weapon,5,16,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +101,Weapon,5,17,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +102,Weapon,5,18,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +103,Weapon,5,19,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +104,Weapon,5,20,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +105,Weapon,5,21,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +106,Armor,1,1,0,7500,2500,0,20,25,50,800,1200,0,0,0,0,0,0 +107,Armor,1,2,0,7500,2500,0,50,62,50,800,1200,0,0,0,0,0,0 +108,Armor,1,3,0,7500,2500,0,100,125,50,800,1200,0,0,0,0,0,0 +109,Armor,1,4,10,7500,2500,0,500,625,50,800,1200,2500,3500,2500,3500,1200,1800 +110,Armor,1,5,0,7125,2375,500,740,925,50,800,1200,0,0,0,0,0,0 +111,Armor,1,6,0,6750,2250,1000,1040,1300,50,800,1200,0,0,0,0,0,0 +112,Armor,1,7,20,7125,2375,500,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,0,6750,2250,1000,2380,2975,50,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,0,6450,2150,1400,2800,3500,50,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,40,7125,2375,500,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,0,6150,2050,1800,4000,5000,50,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,0,5925,1975,2100,4200,5250,50,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,80,6525,2175,1300,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,0,5700,1900,2400,4600,5750,50,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,0,5475,1825,2700,4800,6000,50,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,160,6000,2000,2000,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,0,5325,1775,2900,5200,6500,50,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,0,5175,1725,3100,5400,6750,50,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,320,5625,1875,2500,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,0,3750,1250,5000,5800,7250,50,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,0,3750,1250,5000,6000,7500,50,800,1200,800,1200,800,1200,400,600 +127,Armor,2,1,0,7500,2500,0,30,37,50,800,1200,0,0,0,0,0,0 +128,Armor,2,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 +129,Armor,2,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 +130,Armor,2,4,20,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 +131,Armor,2,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 +132,Armor,2,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 +133,Armor,2,7,40,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,80,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,160,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,320,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,640,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +148,Armor,3,1,0,7500,2500,0,60,75,50,800,1200,0,0,0,0,0,0 +149,Armor,3,2,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 +150,Armor,3,3,0,7500,2500,0,300,375,50,800,1200,0,0,0,0,0,0 +151,Armor,3,4,30,7500,2500,0,1500,1875,50,800,1200,2500,3500,2500,3500,1200,1800 +152,Armor,3,5,0,7125,2375,500,2220,2775,50,800,1200,0,0,0,0,0,0 +153,Armor,3,6,0,6750,2250,1000,3120,3900,50,800,1200,0,0,0,0,0,0 +154,Armor,3,7,60,7125,2375,500,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,0,6750,2250,1000,7140,8925,50,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,0,6450,2150,1400,8400,10500,50,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,120,7125,2375,500,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,0,6150,2050,1800,12000,15000,50,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,0,5925,1975,2100,12600,15750,50,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,240,6525,2175,1300,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,0,5700,1900,2400,13800,17250,50,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,0,5475,1825,2700,14400,18000,50,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,480,6000,2000,2000,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,0,5325,1775,2900,15600,19500,50,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,0,5175,1725,3100,16200,20250,50,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,960,5625,1875,2500,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,0,3750,1250,5000,17400,21750,50,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,0,3750,1250,5000,18000,22500,50,800,1200,800,1200,800,1200,400,600 +169,Armor,4,1,0,7500,2500,0,130,162,50,800,1200,0,0,0,0,0,0 +170,Armor,4,2,0,7500,2500,0,325,406,50,800,1200,0,0,0,0,0,0 +171,Armor,4,3,0,7500,2500,0,650,812,50,800,1200,0,0,0,0,0,0 +172,Armor,4,4,40,7500,2500,0,3250,4062,50,800,1200,2500,3500,2500,3500,1200,1800 +173,Armor,4,5,0,7125,2375,500,4810,6012,50,800,1200,0,0,0,0,0,0 +174,Armor,4,6,0,6750,2250,1000,6760,8450,50,800,1200,0,0,0,0,0,0 +175,Armor,4,7,80,7125,2375,500,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,0,6750,2250,1000,15470,19337,50,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,0,6450,2150,1400,18200,22750,50,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,160,7125,2375,500,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,0,6150,2050,1800,26000,32500,50,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,0,5925,1975,2100,27300,34125,50,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,320,6525,2175,1300,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,0,5700,1900,2400,29900,37375,50,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,0,5475,1825,2700,31200,39000,50,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,640,6000,2000,2000,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,0,5325,1775,2900,33800,42250,50,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,0,5175,1725,3100,35100,43875,50,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,1280,5625,1875,2500,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,0,3750,1250,5000,37700,47125,50,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,0,3750,1250,5000,39000,48750,50,800,1200,800,1200,800,1200,400,600 +190,Armor,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +191,Armor,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +192,Armor,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +193,Armor,5,4,20,7500,2500,0,3600,7200,0,3500,3600,3500,3600,2000,2000,1500,1500 +194,Armor,5,5,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +195,Armor,5,6,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +196,Armor,5,7,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +197,Armor,5,8,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +198,Armor,5,9,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +199,Armor,5,10,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +200,Armor,5,11,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +201,Armor,5,12,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +202,Armor,5,13,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +203,Armor,5,14,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +204,Armor,5,15,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +205,Armor,5,16,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +206,Armor,5,17,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +207,Armor,5,18,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +208,Armor,5,19,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +209,Armor,5,20,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +210,Armor,5,21,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +211,Belt,1,1,0,7500,2500,0,20,25,50,800,1200,0,0,0,0,0,0 +212,Belt,1,2,0,7500,2500,0,50,62,50,800,1200,0,0,0,0,0,0 +213,Belt,1,3,0,7500,2500,0,100,125,50,800,1200,0,0,0,0,0,0 +214,Belt,1,4,10,7500,2500,0,500,625,50,800,1200,2500,3500,2500,3500,1200,1800 +215,Belt,1,5,0,7125,2375,500,740,925,50,800,1200,0,0,0,0,0,0 +216,Belt,1,6,0,6750,2250,1000,1040,1300,50,800,1200,0,0,0,0,0,0 +217,Belt,1,7,20,7125,2375,500,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,0,6750,2250,1000,2380,2975,50,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,0,6450,2150,1400,2800,3500,50,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,40,7125,2375,500,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,0,6150,2050,1800,4000,5000,50,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,0,5925,1975,2100,4200,5250,50,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,80,6525,2175,1300,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,0,5700,1900,2400,4600,5750,50,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,0,5475,1825,2700,4800,6000,50,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,160,6000,2000,2000,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,0,5325,1775,2900,5200,6500,50,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,0,5175,1725,3100,5400,6750,50,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,320,5625,1875,2500,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,0,3750,1250,5000,5800,7250,50,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,0,3750,1250,5000,6000,7500,50,800,1200,800,1200,800,1200,400,600 +232,Belt,2,1,0,7500,2500,0,30,37,50,800,1200,0,0,0,0,0,0 +233,Belt,2,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 +234,Belt,2,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 +235,Belt,2,4,20,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 +236,Belt,2,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 +237,Belt,2,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 +238,Belt,2,7,40,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,80,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,160,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,320,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,640,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +253,Belt,3,1,0,7500,2500,0,60,75,50,800,1200,0,0,0,0,0,0 +254,Belt,3,2,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 +255,Belt,3,3,0,7500,2500,0,300,375,50,800,1200,0,0,0,0,0,0 +256,Belt,3,4,30,7500,2500,0,1500,1875,50,800,1200,2500,3500,2500,3500,1200,1800 +257,Belt,3,5,0,7125,2375,500,2220,2775,50,800,1200,0,0,0,0,0,0 +258,Belt,3,6,0,6750,2250,1000,3120,3900,50,800,1200,0,0,0,0,0,0 +259,Belt,3,7,60,7125,2375,500,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,0,6750,2250,1000,7140,8925,50,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,0,6450,2150,1400,8400,10500,50,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,120,7125,2375,500,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,0,6150,2050,1800,12000,15000,50,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,0,5925,1975,2100,12600,15750,50,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,240,6525,2175,1300,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,0,5700,1900,2400,13800,17250,50,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,0,5475,1825,2700,14400,18000,50,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,480,6000,2000,2000,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,0,5325,1775,2900,15600,19500,50,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,0,5175,1725,3100,16200,20250,50,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,960,5625,1875,2500,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,0,3750,1250,5000,17400,21750,50,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,0,3750,1250,5000,18000,22500,50,800,1200,800,1200,800,1200,400,600 +274,Belt,4,1,0,7500,2500,0,130,162,50,800,1200,0,0,0,0,0,0 +275,Belt,4,2,0,7500,2500,0,325,406,50,800,1200,0,0,0,0,0,0 +276,Belt,4,3,0,7500,2500,0,650,812,50,800,1200,0,0,0,0,0,0 +277,Belt,4,4,40,7500,2500,0,3250,4062,50,800,1200,2500,3500,2500,3500,1200,1800 +278,Belt,4,5,0,7125,2375,500,4810,6012,50,800,1200,0,0,0,0,0,0 +279,Belt,4,6,0,6750,2250,1000,6760,8450,50,800,1200,0,0,0,0,0,0 +280,Belt,4,7,80,7125,2375,500,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,0,6750,2250,1000,15470,19337,50,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,0,6450,2150,1400,18200,22750,50,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,160,7125,2375,500,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,0,6150,2050,1800,26000,32500,50,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,0,5925,1975,2100,27300,34125,50,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,320,6525,2175,1300,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,0,5700,1900,2400,29900,37375,50,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,0,5475,1825,2700,31200,39000,50,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,640,6000,2000,2000,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,0,5325,1775,2900,33800,42250,50,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,0,5175,1725,3100,35100,43875,50,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,1280,5625,1875,2500,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,0,3750,1250,5000,37700,47125,50,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,0,3750,1250,5000,39000,48750,50,800,1200,800,1200,800,1200,400,600 +295,Belt,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +296,Belt,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +297,Belt,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +298,Belt,5,4,20,7500,2500,0,3600,7200,0,3500,3600,3500,3600,2000,2000,1500,1500 +299,Belt,5,5,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +300,Belt,5,6,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +301,Belt,5,7,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +302,Belt,5,8,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +303,Belt,5,9,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +304,Belt,5,10,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +305,Belt,5,11,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +306,Belt,5,12,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +307,Belt,5,13,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +308,Belt,5,14,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +309,Belt,5,15,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +310,Belt,5,16,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +311,Belt,5,17,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +312,Belt,5,18,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +313,Belt,5,19,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +314,Belt,5,20,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +315,Belt,5,21,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +316,Necklace,1,1,0,7500,2500,0,25,31,50,800,1200,0,0,0,0,0,0 +317,Necklace,1,2,0,7500,2500,0,62,77,50,800,1200,0,0,0,0,0,0 +318,Necklace,1,3,0,7500,2500,0,125,156,50,800,1200,0,0,0,0,0,0 +319,Necklace,1,4,10,7500,2500,0,625,781,50,800,1200,2500,3500,2500,3500,1200,1800 +320,Necklace,1,5,0,7125,2375,500,925,1156,50,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,0,6750,2250,1000,1300,1625,50,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,20,7125,2375,500,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,0,6750,2250,1000,2975,3718,50,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,0,6450,2150,1400,3500,4375,50,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,40,7125,2375,500,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,0,6150,2050,1800,5000,6250,50,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,0,5925,1975,2100,5250,6562,50,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,80,6525,2175,1300,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,0,5700,1900,2400,5750,7187,50,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,0,5475,1825,2700,6000,7500,50,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,160,6000,2000,2000,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,0,5325,1775,2900,6500,8125,50,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,0,5175,1725,3100,6750,8437,50,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,320,5625,1875,2500,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,0,3750,1250,5000,7250,9062,50,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,0,3750,1250,5000,7500,9375,50,800,1200,800,1200,800,1200,400,600 +337,Necklace,2,1,0,7500,2500,0,37,46,50,800,1200,0,0,0,0,0,0 +338,Necklace,2,2,0,7500,2500,0,93,116,50,800,1200,0,0,0,0,0,0 +339,Necklace,2,3,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 +340,Necklace,2,4,20,7500,2500,0,937,1171,50,800,1200,2500,3500,2500,3500,1200,1800 +341,Necklace,2,5,0,7125,2375,500,1387,1733,50,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,0,6750,2250,1000,1950,2437,50,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,40,7125,2375,500,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,0,6750,2250,1000,4462,5577,50,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,0,6450,2150,1400,5250,6562,50,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,80,7125,2375,500,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,0,6150,2050,1800,7500,9375,50,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,0,5925,1975,2100,7875,9843,50,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,160,6525,2175,1300,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,0,5700,1900,2400,8625,10781,50,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,0,5475,1825,2700,9000,11250,50,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,320,6000,2000,2000,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,0,5325,1775,2900,9750,12187,50,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,0,5175,1725,3100,10125,12656,50,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,640,5625,1875,2500,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,0,3750,1250,5000,10875,13593,50,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,0,3750,1250,5000,11250,14062,50,800,1200,800,1200,800,1200,400,600 +358,Necklace,3,1,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 +359,Necklace,3,2,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 +360,Necklace,3,3,0,7500,2500,0,375,468,50,800,1200,0,0,0,0,0,0 +361,Necklace,3,4,30,7500,2500,0,1875,2343,50,800,1200,2500,3500,2500,3500,1200,1800 +362,Necklace,3,5,0,7125,2375,500,2775,3468,50,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,0,6750,2250,1000,3900,4875,50,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,60,7125,2375,500,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,0,6750,2250,1000,8925,11156,50,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,0,6450,2150,1400,10500,13125,50,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,120,7125,2375,500,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,0,6150,2050,1800,15000,18750,50,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,0,5925,1975,2100,15750,19687,50,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,240,6525,2175,1300,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,0,5700,1900,2400,17250,21562,50,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,0,5475,1825,2700,18000,22500,50,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,480,6000,2000,2000,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,0,5325,1775,2900,19500,24375,50,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,0,5175,1725,3100,20250,25312,50,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,960,5625,1875,2500,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,0,3750,1250,5000,21750,27187,50,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,0,3750,1250,5000,22500,28125,50,800,1200,800,1200,800,1200,400,600 +379,Necklace,4,1,0,7500,2500,0,162,202,50,800,1200,0,0,0,0,0,0 +380,Necklace,4,2,0,7500,2500,0,406,507,50,800,1200,0,0,0,0,0,0 +381,Necklace,4,3,0,7500,2500,0,812,1015,50,800,1200,0,0,0,0,0,0 +382,Necklace,4,4,40,7500,2500,0,4062,5077,50,800,1200,2500,3500,2500,3500,1200,1800 +383,Necklace,4,5,0,7125,2375,500,6012,7515,50,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,0,6750,2250,1000,8450,10562,50,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,80,7125,2375,500,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,0,6750,2250,1000,19337,24171,50,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,0,6450,2150,1400,22750,28437,50,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,160,7125,2375,500,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,0,6150,2050,1800,32500,40625,50,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,0,5925,1975,2100,34125,42656,50,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,320,6525,2175,1300,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,0,5700,1900,2400,37375,46718,50,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,0,5475,1825,2700,39000,48750,50,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,640,6000,2000,2000,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,0,5325,1775,2900,42250,52812,50,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,0,5175,1725,3100,43875,54843,50,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,1280,5625,1875,2500,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,0,3750,1250,5000,47125,58906,50,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,0,3750,1250,5000,48750,60937,50,800,1200,800,1200,800,1200,400,600 +400,Necklace,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +401,Necklace,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +402,Necklace,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +403,Necklace,5,4,20,7500,2500,0,3600,7200,0,3500,3600,3500,3600,2000,2000,1500,1500 +404,Necklace,5,5,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +405,Necklace,5,6,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +406,Necklace,5,7,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +407,Necklace,5,8,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +408,Necklace,5,9,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +409,Necklace,5,10,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +410,Necklace,5,11,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +411,Necklace,5,12,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +412,Necklace,5,13,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +413,Necklace,5,14,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +414,Necklace,5,15,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +415,Necklace,5,16,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +416,Necklace,5,17,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +417,Necklace,5,18,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +418,Necklace,5,19,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +419,Necklace,5,20,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +420,Necklace,5,21,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +421,Ring,1,1,0,7500,2500,0,30,37,50,800,1200,0,0,0,0,0,0 +422,Ring,1,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 +423,Ring,1,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 +424,Ring,1,4,10,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 +425,Ring,1,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 +426,Ring,1,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 +427,Ring,1,7,20,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,40,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,80,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,160,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,320,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +442,Ring,2,1,0,7500,2500,0,45,56,50,800,1200,0,0,0,0,0,0 +443,Ring,2,2,0,7500,2500,0,112,140,50,800,1200,0,0,0,0,0,0 +444,Ring,2,3,0,7500,2500,0,225,281,50,800,1200,0,0,0,0,0,0 +445,Ring,2,4,20,7500,2500,0,1125,1406,50,800,1200,2500,3500,2500,3500,1200,1800 +446,Ring,2,5,0,7125,2375,500,1665,2081,50,800,1200,0,0,0,0,0,0 +447,Ring,2,6,0,6750,2250,1000,2340,2925,50,800,1200,0,0,0,0,0,0 +448,Ring,2,7,40,7125,2375,500,4500,5625,50,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,0,6750,2250,1000,5355,6693,50,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,0,6450,2150,1400,6300,7875,50,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,80,7125,2375,500,8550,10687,50,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,0,6150,2050,1800,9000,11250,50,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,0,5925,1975,2100,9450,11812,50,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,160,6525,2175,1300,9900,12375,50,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,0,5700,1900,2400,10350,12937,50,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,0,5475,1825,2700,10800,13500,50,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,320,6000,2000,2000,11250,14062,50,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,0,5325,1775,2900,11700,14625,50,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,0,5175,1725,3100,12150,15187,50,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,640,5625,1875,2500,12600,15750,50,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,0,3750,1250,5000,13050,16312,50,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,0,3750,1250,5000,13500,16875,50,800,1200,800,1200,800,1200,400,600 +463,Ring,3,1,0,7500,2500,0,90,112,50,800,1200,0,0,0,0,0,0 +464,Ring,3,2,0,7500,2500,0,225,281,50,800,1200,0,0,0,0,0,0 +465,Ring,3,3,0,7500,2500,0,450,562,50,800,1200,0,0,0,0,0,0 +466,Ring,3,4,30,7500,2500,0,2250,2812,50,800,1200,2500,3500,2500,3500,1200,1800 +467,Ring,3,5,0,7125,2375,500,3330,4162,50,800,1200,0,0,0,0,0,0 +468,Ring,3,6,0,6750,2250,1000,4680,5850,50,800,1200,0,0,0,0,0,0 +469,Ring,3,7,60,7125,2375,500,9000,11250,50,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,0,6750,2250,1000,10710,13387,50,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,0,6450,2150,1400,12600,15750,50,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,120,7125,2375,500,17100,21375,50,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,0,6150,2050,1800,18000,22500,50,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,0,5925,1975,2100,18900,23625,50,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,240,6525,2175,1300,19800,24750,50,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,0,5700,1900,2400,20700,25875,50,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,0,5475,1825,2700,21600,27000,50,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,480,6000,2000,2000,22500,28125,50,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,0,5325,1775,2900,23400,29250,50,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,0,5175,1725,3100,24300,30375,50,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,960,5625,1875,2500,25200,31500,50,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,0,3750,1250,5000,26100,32625,50,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,0,3750,1250,5000,27000,33750,50,800,1200,800,1200,800,1200,400,600 +484,Ring,4,1,0,7500,2500,0,195,243,50,800,1200,0,0,0,0,0,0 +485,Ring,4,2,0,7500,2500,0,487,608,50,800,1200,0,0,0,0,0,0 +486,Ring,4,3,0,7500,2500,0,975,1218,50,800,1200,0,0,0,0,0,0 +487,Ring,4,4,40,7500,2500,0,4875,6093,50,800,1200,2500,3500,2500,3500,1200,1800 +488,Ring,4,5,0,7125,2375,500,7215,9018,50,800,1200,0,0,0,0,0,0 +489,Ring,4,6,0,6750,2250,1000,10140,12675,50,800,1200,0,0,0,0,0,0 +490,Ring,4,7,80,7125,2375,500,19500,24375,50,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,0,6750,2250,1000,23205,29006,50,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,0,6450,2150,1400,27300,34125,50,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,160,7125,2375,500,37050,46312,50,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,0,6150,2050,1800,39000,48750,50,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,0,5925,1975,2100,40950,51187,50,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,320,6525,2175,1300,42900,53625,50,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,0,5700,1900,2400,44850,56062,50,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,0,5475,1825,2700,46800,58500,50,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,640,6000,2000,2000,48750,60937,50,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,0,5325,1775,2900,50700,63375,50,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,0,5175,1725,3100,52650,65812,50,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,1280,5625,1875,2500,54600,68250,50,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,0,3750,1250,5000,56550,70687,50,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,0,3750,1250,5000,58500,73125,50,800,1200,800,1200,800,1200,400,600 +505,Ring,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +506,Ring,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +507,Ring,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +508,Ring,5,4,20,7500,2500,0,3600,7200,0,3500,3600,3500,3600,2000,2000,1500,1500 +509,Ring,5,5,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +510,Ring,5,6,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +511,Ring,5,7,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +512,Ring,5,8,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +513,Ring,5,9,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,2000,2000,1500,1500 +514,Ring,5,10,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +515,Ring,5,11,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +516,Ring,5,12,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +517,Ring,5,13,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +518,Ring,5,14,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +519,Ring,5,15,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +520,Ring,5,16,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +521,Ring,5,17,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +522,Ring,5,18,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +523,Ring,5,19,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +524,Ring,5,20,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 +525,Ring,5,21,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0"; + + public const string LegacyEnhancementCostSheetV3 = + @"id,item_sub_type,grade,level,cost,exp,required_block_index,base_stat_growth_min,base_stat_growth_max,extra_stat_growth_min,extra_stat_growth_max,extra_skill_damage_growth_min,extra_skill_damage_growth_max,extra_skill_chance_growth_min,extra_skill_chance_growth_max +1,Weapon,1,1,0,20,25,800,1200,0,0,0,0,0,0 +2,Weapon,1,2,0,40,62,800,1200,0,0,0,0,0,0 +3,Weapon,1,3,0,80,125,800,1200,0,0,0,0,0,0 +4,Weapon,1,4,20,160,625,800,1200,2500,3500,2500,3500,1200,1800 +5,Weapon,1,5,40,320,925,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,80,640,1300,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,160,1280,2500,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,320,2560,2975,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,640,5120,3500,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,1280,10240,4750,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,2560,20480,5000,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,5120,40960,5250,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,10240,81920,5500,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,20480,163840,5750,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,40960,327680,6000,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,81920,655360,6250,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,163840,1310720,6500,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,327680,2621440,6750,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,655360,5242880,7000,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,1310720,10485760,7250,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,2621440,20971520,7500,800,1200,800,1200,800,1200,400,600 +22,Weapon,2,1,0,160,37,800,1200,0,0,0,0,0,0 +23,Weapon,2,2,0,320,93,800,1200,0,0,0,0,0,0 +24,Weapon,2,3,0,640,187,800,1200,0,0,0,0,0,0 +25,Weapon,2,4,20,1280,937,800,1200,2500,3500,2500,3500,1200,1800 +26,Weapon,2,5,40,2560,1387,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,80,5120,1950,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,160,10240,3750,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,320,20480,4462,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,640,40960,5250,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,1280,81920,7125,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,2560,163840,7500,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,5120,327680,7875,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,10240,655360,8250,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,20480,1310720,8625,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,40960,2621440,9000,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,81920,5242880,9375,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,163840,10485760,9750,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,327680,20971520,10125,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,655360,41943040,10500,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,1310720,83886080,10875,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,2621440,167772160,11250,800,1200,800,1200,800,1200,400,600 +43,Weapon,3,1,0,32040,75,800,1200,0,0,0,0,0,0 +44,Weapon,3,2,0,64080,187,800,1200,0,0,0,0,0,0 +45,Weapon,3,3,0,128160,375,800,1200,0,0,0,0,0,0 +46,Weapon,3,4,20,256320,1875,800,1200,2500,3500,2500,3500,1200,1800 +47,Weapon,3,5,40,512640,2775,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,80,1025280,3900,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,160,2050560,7500,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,320,4101120,8925,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,640,8202240,10500,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,1280,16404480,14250,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,2560,32808960,15000,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,5120,65617920,15750,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,10240,131235840,16500,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,20480,262471680,17250,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,40960,524943360,18000,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,81920,1049886720,18750,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,163840,2099773440,19500,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,327680,4199546880,20250,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,655360,8399093760,21000,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,1310720,16798187520,21750,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,2621440,33596375040,22500,800,1200,800,1200,800,1200,400,600 +64,Weapon,4,1,0,852000,162,800,1200,0,0,0,0,0,0 +65,Weapon,4,2,0,1704000,406,800,1200,0,0,0,0,0,0 +66,Weapon,4,3,0,3408000,812,800,1200,0,0,0,0,0,0 +67,Weapon,4,4,20,6816000,4062,800,1200,2500,3500,2500,3500,1200,1800 +68,Weapon,4,5,40,13632000,6012,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,80,27264000,8450,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,160,54528000,16250,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,320,109056000,19337,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,640,218112000,22750,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,1280,436224000,30875,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,2560,872448000,32500,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,5120,1744896000,34125,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,10240,3489792000,35750,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,20480,6979584000,37375,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,40960,13959168000,39000,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,81920,27918336000,40625,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,163840,55836672000,42250,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,327680,111673344000,43875,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,655360,223346688000,45500,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,1310720,446693376000,47125,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,2621440,893386752000,48750,800,1200,800,1200,800,1200,400,600 +85,Weapon,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 +86,Weapon,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 +87,Weapon,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 +88,Weapon,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 +89,Weapon,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 +90,Weapon,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +91,Weapon,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 +92,Weapon,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 +93,Weapon,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +94,Weapon,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 +95,Weapon,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 +96,Weapon,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 +97,Weapon,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 +98,Weapon,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 +99,Weapon,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 +100,Weapon,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 +101,Weapon,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 +102,Weapon,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 +103,Weapon,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 +104,Weapon,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 +105,Weapon,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 +106,Armor,1,1,0,38,20,800,1200,0,0,0,0,0,0 +107,Armor,1,2,0,76,50,800,1200,0,0,0,0,0,0 +108,Armor,1,3,0,152,100,800,1200,0,0,0,0,0,0 +109,Armor,1,4,20,304,500,800,1200,2500,3500,2500,3500,1200,1800 +110,Armor,1,5,40,608,740,800,1200,0,0,0,0,0,0 +111,Armor,1,6,80,1216,1040,800,1200,0,0,0,0,0,0 +112,Armor,1,7,160,2432,2000,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,320,4864,2380,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,640,9728,2800,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,1280,19456,3800,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,2560,38912,4000,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,5120,77824,4200,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,10240,155648,4400,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,20480,311296,4600,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,40960,622592,4800,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,81920,1245184,5000,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,163840,2490368,5200,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,327680,4980736,5400,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,655360,9961472,5600,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,1310720,19922944,5800,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,2621440,39845888,6000,800,1200,800,1200,800,1200,400,600 +127,Armor,2,1,0,206,30,800,1200,0,0,0,0,0,0 +128,Armor,2,2,0,412,75,800,1200,0,0,0,0,0,0 +129,Armor,2,3,0,824,150,800,1200,0,0,0,0,0,0 +130,Armor,2,4,20,1648,750,800,1200,2500,3500,2500,3500,1200,1800 +131,Armor,2,5,40,3296,1110,800,1200,0,0,0,0,0,0 +132,Armor,2,6,80,6592,1560,800,1200,0,0,0,0,0,0 +133,Armor,2,7,160,13184,3000,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,320,26368,3570,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,640,52736,4200,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,1280,105472,5700,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,2560,210944,6000,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,5120,421888,6300,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,10240,843776,6600,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,20480,1687552,6900,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,40960,3375104,7200,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,81920,6750208,7500,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,163840,13500416,7800,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,327680,27000832,8100,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,655360,54001664,8400,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,1310720,108003328,8700,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,2621440,216006656,9000,800,1200,800,1200,800,1200,400,600 +148,Armor,3,1,0,19200,60,800,1200,0,0,0,0,0,0 +149,Armor,3,2,0,38400,150,800,1200,0,0,0,0,0,0 +150,Armor,3,3,0,76800,300,800,1200,0,0,0,0,0,0 +151,Armor,3,4,20,153600,1500,800,1200,2500,3500,2500,3500,1200,1800 +152,Armor,3,5,40,307200,2220,800,1200,0,0,0,0,0,0 +153,Armor,3,6,80,614400,3120,800,1200,0,0,0,0,0,0 +154,Armor,3,7,160,1228800,6000,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,320,2457600,7140,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,640,4915200,8400,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,1280,9830400,11400,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,2560,19660800,12000,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,5120,39321600,12600,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,10240,78643200,13200,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,20480,157286400,13800,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,40960,314572800,14400,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,81920,629145600,15000,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,163840,1258291200,15600,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,327680,2516582400,16200,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,655360,5033164800,16800,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,1310720,10066329600,17400,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,2621440,20132659200,18000,800,1200,800,1200,800,1200,400,600 +169,Armor,4,1,0,852000,130,800,1200,0,0,0,0,0,0 +170,Armor,4,2,0,1704000,325,800,1200,0,0,0,0,0,0 +171,Armor,4,3,0,3408000,650,800,1200,0,0,0,0,0,0 +172,Armor,4,4,20,6816000,3250,800,1200,2500,3500,2500,3500,1200,1800 +173,Armor,4,5,40,13632000,4810,800,1200,0,0,0,0,0,0 +174,Armor,4,6,80,27264000,6760,800,1200,0,0,0,0,0,0 +175,Armor,4,7,160,54528000,13000,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,320,109056000,15470,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,640,218112000,18200,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,1280,436224000,24700,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,2560,872448000,26000,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,5120,1744896000,27300,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,10240,3489792000,28600,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,20480,6979584000,29900,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,40960,13959168000,31200,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,81920,27918336000,32500,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,163840,55836672000,33800,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,327680,111673344000,35100,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,655360,223346688000,36400,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,1310720,446693376000,37700,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,2621440,893386752000,39000,800,1200,800,1200,800,1200,400,600 +190,Armor,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 +191,Armor,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 +192,Armor,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 +193,Armor,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 +194,Armor,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 +195,Armor,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +196,Armor,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 +197,Armor,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 +198,Armor,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +199,Armor,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 +200,Armor,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 +201,Armor,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 +202,Armor,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 +203,Armor,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 +204,Armor,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 +205,Armor,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 +206,Armor,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 +207,Armor,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 +208,Armor,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 +209,Armor,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 +210,Armor,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 +211,Belt,1,1,0,1908,20,800,1200,0,0,0,0,0,0 +212,Belt,1,2,0,3816,50,800,1200,0,0,0,0,0,0 +213,Belt,1,3,0,7632,100,800,1200,0,0,0,0,0,0 +214,Belt,1,4,20,15264,500,800,1200,2500,3500,2500,3500,1200,1800 +215,Belt,1,5,40,30528,740,800,1200,0,0,0,0,0,0 +216,Belt,1,6,80,61056,1040,800,1200,0,0,0,0,0,0 +217,Belt,1,7,160,122112,2000,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,320,244224,2380,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,640,488448,2800,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,1280,976896,3800,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,2560,1953792,4000,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,5120,3907584,4200,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,10240,7815168,4400,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,20480,15630336,4600,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,40960,31260672,4800,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,81920,62521344,5000,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,163840,125042688,5200,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,327680,250085376,5400,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,655360,500170752,5600,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,1310720,1000341504,5800,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,2621440,2000683008,6000,800,1200,800,1200,800,1200,400,600 +232,Belt,2,1,0,2992,30,800,1200,0,0,0,0,0,0 +233,Belt,2,2,0,5984,75,800,1200,0,0,0,0,0,0 +234,Belt,2,3,0,11968,150,800,1200,0,0,0,0,0,0 +235,Belt,2,4,20,23936,750,800,1200,2500,3500,2500,3500,1200,1800 +236,Belt,2,5,40,47872,1110,800,1200,0,0,0,0,0,0 +237,Belt,2,6,80,95744,1560,800,1200,0,0,0,0,0,0 +238,Belt,2,7,160,191488,3000,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,320,382976,3570,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,640,765952,4200,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,1280,1531904,5700,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,2560,3063808,6000,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,5120,6127616,6300,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,10240,12255232,6600,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,20480,24510464,6900,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,40960,49020928,7200,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,81920,98041856,7500,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,163840,196083712,7800,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,327680,392167424,8100,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,655360,784334848,8400,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,1310720,1568669696,8700,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,2621440,3137339392,9000,800,1200,800,1200,800,1200,400,600 +253,Belt,3,1,0,7728,60,800,1200,0,0,0,0,0,0 +254,Belt,3,2,0,15456,150,800,1200,0,0,0,0,0,0 +255,Belt,3,3,0,30912,300,800,1200,0,0,0,0,0,0 +256,Belt,3,4,20,61824,1500,800,1200,2500,3500,2500,3500,1200,1800 +257,Belt,3,5,40,123648,2220,800,1200,0,0,0,0,0,0 +258,Belt,3,6,80,247296,3120,800,1200,0,0,0,0,0,0 +259,Belt,3,7,160,494592,6000,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,320,989184,7140,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,640,1978368,8400,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,1280,3956736,11400,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,2560,7913472,12000,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,5120,15826944,12600,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,10240,31653888,13200,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,20480,63307776,13800,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,40960,126615552,14400,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,81920,253231104,15000,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,163840,506462208,15600,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,327680,1012924416,16200,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,655360,2025848832,16800,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,1310720,4051697664,17400,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,2621440,8103395328,18000,800,1200,800,1200,800,1200,400,600 +274,Belt,4,1,0,193200,130,800,1200,0,0,0,0,0,0 +275,Belt,4,2,0,386400,325,800,1200,0,0,0,0,0,0 +276,Belt,4,3,0,772800,650,800,1200,0,0,0,0,0,0 +277,Belt,4,4,20,1545600,3250,800,1200,2500,3500,2500,3500,1200,1800 +278,Belt,4,5,40,3091200,4810,800,1200,0,0,0,0,0,0 +279,Belt,4,6,80,6182400,6760,800,1200,0,0,0,0,0,0 +280,Belt,4,7,160,12364800,13000,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,320,24729600,15470,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,640,49459200,18200,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,1280,98918400,24700,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,2560,197836800,26000,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,5120,395673600,27300,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,10240,791347200,28600,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,20480,1582694400,29900,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,40960,3165388800,31200,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,81920,6330777600,32500,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,163840,12661555200,33800,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,327680,25323110400,35100,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,655360,50646220800,36400,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,1310720,101292441600,37700,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,2621440,202584883200,39000,800,1200,800,1200,800,1200,400,600 +295,Belt,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 +296,Belt,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 +297,Belt,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 +298,Belt,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 +299,Belt,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 +300,Belt,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +301,Belt,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 +302,Belt,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 +303,Belt,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +304,Belt,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 +305,Belt,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 +306,Belt,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 +307,Belt,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 +308,Belt,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 +309,Belt,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 +310,Belt,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 +311,Belt,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 +312,Belt,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 +313,Belt,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 +314,Belt,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 +315,Belt,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 +316,Necklace,1,1,0,630,25,800,1200,0,0,0,0,0,0 +317,Necklace,1,2,0,1260,62,800,1200,0,0,0,0,0,0 +318,Necklace,1,3,0,2520,125,800,1200,0,0,0,0,0,0 +319,Necklace,1,4,20,5040,625,800,1200,2500,3500,2500,3500,1200,1800 +320,Necklace,1,5,40,10080,925,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,80,20160,1300,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,160,40320,2500,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,320,80640,2975,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,640,161280,3500,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,1280,322560,4750,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,2560,645120,5000,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,5120,1290240,5250,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,10240,2580480,5500,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,20480,5160960,5750,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,40960,10321920,6000,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,81920,20643840,6250,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,163840,41287680,6500,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,327680,82575360,6750,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,655360,165150720,7000,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,1310720,330301440,7250,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,2621440,660602880,7500,800,1200,800,1200,800,1200,400,600 +337,Necklace,2,1,0,3472,37,800,1200,0,0,0,0,0,0 +338,Necklace,2,2,0,6944,93,800,1200,0,0,0,0,0,0 +339,Necklace,2,3,0,13888,187,800,1200,0,0,0,0,0,0 +340,Necklace,2,4,20,27776,937,800,1200,2500,3500,2500,3500,1200,1800 +341,Necklace,2,5,40,55552,1387,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,80,111104,1950,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,160,222208,3750,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,320,444416,4462,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,640,888832,5250,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,1280,1777664,7125,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,2560,3555328,7500,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,5120,7110656,7875,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,10240,14221312,8250,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,20480,28442624,8625,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,40960,56885248,9000,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,81920,113770496,9375,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,163840,227540992,9750,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,327680,455081984,10125,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,655360,910163968,10500,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,1310720,1820327936,10875,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,2621440,3640655872,11250,800,1200,800,1200,800,1200,400,600 +358,Necklace,3,1,0,130080,75,800,1200,0,0,0,0,0,0 +359,Necklace,3,2,0,260160,187,800,1200,0,0,0,0,0,0 +360,Necklace,3,3,0,520320,375,800,1200,0,0,0,0,0,0 +361,Necklace,3,4,20,1040640,1875,800,1200,2500,3500,2500,3500,1200,1800 +362,Necklace,3,5,40,2081280,2775,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,80,4162560,3900,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,160,8325120,7500,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,320,16650240,8925,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,640,33300480,10500,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,1280,66600960,14250,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,2560,133201920,15000,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,5120,266403840,15750,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,10240,532807680,16500,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,20480,1065615360,17250,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,40960,2131230720,18000,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,81920,4262461440,18750,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,163840,8524922880,19500,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,327680,17049845760,20250,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,655360,34099691520,21000,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,1310720,68199383040,21750,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,2621440,136398766080,22500,800,1200,800,1200,800,1200,400,600 +379,Necklace,4,1,0,486000,162,800,1200,0,0,0,0,0,0 +380,Necklace,4,2,0,972000,406,800,1200,0,0,0,0,0,0 +381,Necklace,4,3,0,1944000,812,800,1200,0,0,0,0,0,0 +382,Necklace,4,4,20,3888000,4062,800,1200,2500,3500,2500,3500,1200,1800 +383,Necklace,4,5,40,7776000,6012,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,80,15552000,8450,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,160,31104000,16250,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,320,62208000,19337,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,640,124416000,22750,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,1280,248832000,30875,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,2560,497664000,32500,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,5120,995328000,34125,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,10240,1990656000,35750,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,20480,3981312000,37375,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,40960,7962624000,39000,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,81920,15925248000,40625,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,163840,31850496000,42250,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,327680,63700992000,43875,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,655360,127401984000,45500,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,1310720,254803968000,47125,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,2621440,509607936000,48750,800,1200,800,1200,800,1200,400,600 +400,Necklace,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 +401,Necklace,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 +402,Necklace,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 +403,Necklace,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 +404,Necklace,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 +405,Necklace,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +406,Necklace,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 +407,Necklace,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 +408,Necklace,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +409,Necklace,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 +410,Necklace,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 +411,Necklace,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 +412,Necklace,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 +413,Necklace,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 +414,Necklace,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 +415,Necklace,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 +416,Necklace,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 +417,Necklace,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 +418,Necklace,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 +419,Necklace,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 +420,Necklace,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 +421,Ring,1,1,0,20,30,800,1200,0,0,0,0,0,0 +422,Ring,1,2,0,40,75,800,1200,0,0,0,0,0,0 +423,Ring,1,3,0,80,150,800,1200,0,0,0,0,0,0 +424,Ring,1,4,20,160,750,800,1200,2500,3500,2500,3500,1200,1800 +425,Ring,1,5,40,320,1110,800,1200,0,0,0,0,0,0 +426,Ring,1,6,80,640,1560,800,1200,0,0,0,0,0,0 +427,Ring,1,7,160,1280,3000,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,320,2560,3570,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,640,5120,4200,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,1280,10240,5700,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,2560,20480,6000,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,5120,40960,6300,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,10240,81920,6600,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,20480,163840,6900,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,40960,327680,7200,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,81920,655360,7500,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,163840,1310720,7800,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,327680,2621440,8100,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,655360,5242880,8400,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,1310720,10485760,8700,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,2621440,20971520,9000,800,1200,800,1200,800,1200,400,600 +442,Ring,2,1,0,432,45,800,1200,0,0,0,0,0,0 +443,Ring,2,2,0,864,112,800,1200,0,0,0,0,0,0 +444,Ring,2,3,0,1728,225,800,1200,0,0,0,0,0,0 +445,Ring,2,4,20,3456,1125,800,1200,2500,3500,2500,3500,1200,1800 +446,Ring,2,5,40,6912,1665,800,1200,0,0,0,0,0,0 +447,Ring,2,6,80,13824,2340,800,1200,0,0,0,0,0,0 +448,Ring,2,7,160,27648,4500,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,320,55296,5355,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,640,110592,6300,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,1280,221184,8550,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,2560,442368,9000,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,5120,884736,9450,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,10240,1769472,9900,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,20480,3538944,10350,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,40960,7077888,10800,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,81920,14155776,11250,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,163840,28311552,11700,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,327680,56623104,12150,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,655360,113246208,12600,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,1310720,226492416,13050,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,2621440,452984832,13500,800,1200,800,1200,800,1200,400,600 +463,Ring,3,1,0,11136,90,800,1200,0,0,0,0,0,0 +464,Ring,3,2,0,22272,225,800,1200,0,0,0,0,0,0 +465,Ring,3,3,0,44544,450,800,1200,0,0,0,0,0,0 +466,Ring,3,4,20,89088,2250,800,1200,2500,3500,2500,3500,1200,1800 +467,Ring,3,5,40,178176,3330,800,1200,0,0,0,0,0,0 +468,Ring,3,6,80,356352,4680,800,1200,0,0,0,0,0,0 +469,Ring,3,7,160,712704,9000,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,320,1425408,10710,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,640,2850816,12600,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,1280,5701632,17100,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,2560,11403264,18000,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,5120,22806528,18900,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,10240,45613056,19800,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,20480,91226112,20700,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,40960,182452224,21600,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,81920,364904448,22500,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,163840,729808896,23400,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,327680,1459617792,24300,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,655360,2919235584,25200,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,1310720,5838471168,26100,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,2621440,11676942336,27000,800,1200,800,1200,800,1200,400,600 +484,Ring,4,1,0,852000,195,800,1200,0,0,0,0,0,0 +485,Ring,4,2,0,1704000,487,800,1200,0,0,0,0,0,0 +486,Ring,4,3,0,3408000,975,800,1200,0,0,0,0,0,0 +487,Ring,4,4,20,6816000,4875,800,1200,2500,3500,2500,3500,1200,1800 +488,Ring,4,5,40,13632000,7215,800,1200,0,0,0,0,0,0 +489,Ring,4,6,80,27264000,10140,800,1200,0,0,0,0,0,0 +490,Ring,4,7,160,54528000,19500,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,320,109056000,23205,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,640,218112000,27300,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,1280,436224000,37050,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,2560,872448000,39000,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,5120,1744896000,40950,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,10240,3489792000,42900,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,20480,6979584000,44850,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,40960,13959168000,46800,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,81920,27918336000,48750,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,163840,55836672000,50700,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,327680,111673344000,52650,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,655360,223346688000,54600,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,1310720,446693376000,56550,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,2621440,893386752000,58500,800,1200,800,1200,800,1200,400,600 +505,Ring,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 +506,Ring,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 +507,Ring,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 +508,Ring,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 +509,Ring,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 +510,Ring,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +511,Ring,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 +512,Ring,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 +513,Ring,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 +514,Ring,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 +515,Ring,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 +516,Ring,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 +517,Ring,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 +518,Ring,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 +519,Ring,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 +520,Ring,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 +521,Ring,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 +522,Ring,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 +523,Ring,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 +524,Ring,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 +525,Ring,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0"; + + public const string LegacyEquipmentItemSheet = + @"id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_range,spine_resource_path,exp +10100000,나뭇가지,Weapon,0,Normal,0,ATK,1,2,10100000,0 +10110000,검,Weapon,1,Normal,1,ATK,11,2,10110000,5 +10111000,롱 소드(불),Weapon,1,Fire,2,ATK,14,2,10111000,10 +10112000,롱 소드(물),Weapon,1,Water,3,ATK,17,2,10112000,10 +10113000,롱 소드(땅),Weapon,1,Land,4,ATK,55,2,10113000,10 +10114000,롱 소드(바람),Weapon,1,Wind,5,ATK,136,2,10114000,10 +10120000,검투사 검,Weapon,2,Normal,6,ATK,31,2,10120000,80 +10121000,검투사 검(불),Weapon,2,Fire,7,ATK,32,2,10121000,80 +10122000,검투사 검(물),Weapon,2,Water,8,ATK,38,2,10122000,80 +10123000,검투사 검(땅),Weapon,2,Land,9,ATK,152,2,10123000,80 +10124000,검투사 검(바람),Weapon,2,Wind,10,ATK,327,2,10124000,80 +10130000,까마귀의 검,Weapon,3,Normal,11,ATK,78,2,10130000,16020 +10131000,까마귀의 검(불),Weapon,3,Fire,12,ATK,81,2,10131000,16020 +10132000,까마귀의 검(물),Weapon,3,Water,13,ATK,92,2,10132000,16020 +10133000,까마귀의 검(땅),Weapon,3,Land,14,ATK,354,2,10133000,16020 +10134000,까마귀의 검(바람),Weapon,3,Wind,15,ATK,693,2,10134000,16020 +10130001,무거운 검,Weapon,3,Normal,11,ATK,170,2,10130001,16020 +10131001,무거운 검(불),Weapon,3,Fire,12,ATK,179,2,10131001,16020 +10132001,무거운 검(물),Weapon,3,Water,13,ATK,196,2,10132001,16020 +10133001,무거운 검(땅),Weapon,3,Land,14,ATK,908,2,10133001,16020 +10134001,무거운 검(바람),Weapon,3,Wind,15,ATK,967,2,10134001,16020 +10140000,전쟁 검,Weapon,4,Normal,11,ATK,3094,2,10140000,426000 +10141000,전쟁 검(불),Weapon,4,Fire,12,ATK,1934,2,10141000,426000 +10142000,전쟁 검(물),Weapon,4,Water,13,ATK,2224,2,10142000,426000 +10143000,전쟁 검(땅),Weapon,4,Land,14,ATK,2514,2,10143000,426000 +10144000,전쟁 검(바람),Weapon,4,Wind,15,ATK,2804,2,10144000,426000 +10150000,다인슬레이프,Weapon,5,Normal,16,ATK,6063,2,10150000,6760000 +10151000,다인슬레이프(불),Weapon,5,Fire,17,ATK,4331,2,10151000,6760000 +10152000,다인슬레이프(물),Weapon,5,Water,18,ATK,4331,2,10152000,6760000 +10153000,다인슬레이프(땅),Weapon,5,Land,19,ATK,6063,2,10153000,6760000 +10154000,다인슬레이프(바람),Weapon,5,Wind,20,ATK,6063,2,10154000,6760000 +10140001,아스가르드의 검,Weapon,5,Normal,11,ATK,765,2,10140001,6760000 +10141001,아스가르드의 검(불),Weapon,5,Fire,12,ATK,782,2,10141001,6760000 +10142001,아스가르드의 검(물),Weapon,5,Water,13,ATK,798,2,10142001,6760000 +10143001,아스가르드의 검(땅),Weapon,5,Land,14,ATK,1221,2,10143001,6760000 +10144001,아스가르드의 검(바람),Weapon,5,Wind,15,ATK,1525,2,10144001,6760000 +10150001,수르트의 검,Weapon,5,Normal,16,ATK,2157,2,10150001,6760000 +10151001,수르트의 검(불),Weapon,5,Fire,17,ATK,2190,2,10151001,6760000 +10152001,수르트의 검(물),Weapon,5,Water,18,ATK,2223,2,10152001,6760000 +10153001,수르트의 검(땅),Weapon,5,Land,19,ATK,3390,2,10153001,6760000 +10154001,수르트의 검(바람),Weapon,5,Wind,20,ATK,4219,2,10154001,6760000 +10155000,발키리의 검,Weapon,5,Normal,15,ATK,2902,2,10155000,6760000 +10200000,누더기 옷,Armor,0,Normal,0,HP,30,2,Character/Player/10200000,0 +10210000,옷,Armor,1,Normal,1,HP,180,2,Character/Player/10210000,19 +10211000,천 옷(불),Armor,1,Fire,2,HP,222,2,Character/Player/10211000,19 +10212000,천 옷(물),Armor,1,Water,3,HP,288,2,Character/Player/10212000,19 +10213000,천 옷(땅),Armor,1,Land,4,HP,915,2,Character/Player/10213000,19 +10214000,천 옷(바람),Armor,1,Wind,5,HP,2182,2,Character/Player/10214000,19 +10220000,가죽 옷,Armor,2,Normal,6,HP,531,2,Character/Player/10220000,103 +10221000,가죽 옷(불),Armor,2,Fire,7,HP,549,2,Character/Player/10221000,103 +10222000,가죽 옷(물),Armor,2,Water,8,HP,621,2,Character/Player/10222000,103 +10223000,가죽 옷(땅),Armor,2,Land,9,HP,2431,2,Character/Player/10223000,103 +10224000,가죽 옷(바람),Armor,2,Wind,10,HP,5109,2,Character/Player/10224000,103 +10230000,검은 까마귀의 갑옷,Armor,3,Normal,11,HP,1337,2,Character/Player/10230000,9600 +10231000,검은 까마귀의 갑옷(불),Armor,3,Fire,12,HP,1418,2,Character/Player/10231000,9600 +10232000,검은 까마귀의 갑옷(물),Armor,3,Water,13,HP,1580,2,Character/Player/10232000,9600 +10233000,검은 까마귀의 갑옷(땅),Armor,3,Land,14,HP,8370,2,Character/Player/10233000,9600 +10234000,검은 까마귀의 갑옷(바람),Armor,3,Wind,15,HP,10571,2,Character/Player/10234000,9600 +10230001,헤르메스의 옷,Armor,3,Normal,11,HP,2811,2,Character/Player/10230001,9600 +10231001,헤르메스의 옷(불),Armor,3,Fire,12,HP,3009,2,Character/Player/10231001,9600 +10232001,헤르메스의 옷(물),Armor,3,Water,13,HP,3141,2,Character/Player/10232001,9600 +10233001,헤르메스의 옷(땅),Armor,3,Land,14,HP,11482,2,Character/Player/10233001,9600 +10234001,헤르메스의 옷(바람),Armor,3,Wind,15,HP,12302,2,Character/Player/10234001,9600 +10240000,전쟁 갑옷,Armor,4,Normal,11,HP,34446,2,Character/Player/10240000,426000 +10241000,전쟁 갑옷(불),Armor,4,Fire,12,HP,24604,2,Character/Player/10241000,426000 +10242000,전쟁 갑옷(물),Armor,4,Water,13,HP,27064,2,Character/Player/10242000,426000 +10243000,전쟁 갑옷(땅),Armor,4,Land,14,HP,29525,2,Character/Player/10243000,426000 +10244000,전쟁 갑옷(바람),Armor,4,Wind,15,HP,31985,2,Character/Player/10244000,426000 +10250001,고대의 갑옷,Armor,5,Normal,11,HP,67513,2,Character/Player/10250001,6760000 +10251001,고대의 갑옷(불),Armor,5,Fire,12,HP,48224,2,Character/Player/10251001,6760000 +10252001,고대의 갑옷(물),Armor,5,Water,13,HP,48224,2,Character/Player/10252001,6760000 +10253001,고대의 갑옷(땅),Armor,5,Land,14,HP,67513,2,Character/Player/10253001,6760000 +10254001,고대의 갑옷(바람),Armor,5,Wind,15,HP,67513,2,Character/Player/10254001,6760000 +10250000,전설의 갑옷,Armor,5,Normal,11,HP,15550,2,Character/Player/10250000,6760000 +10251000,전설의 갑옷(불),Armor,5,Fire,12,HP,15848,2,Character/Player/10251000,6760000 +10252000,전설의 갑옷(물),Armor,5,Water,13,HP,16146,2,Character/Player/10252000,6760000 +10253000,전설의 갑옷(땅),Armor,5,Land,14,HP,24665,2,Character/Player/10253000,6760000 +10254000,전설의 갑옷(바람),Armor,5,Wind,15,HP,30823,2,Character/Player/10254000,6760000 +10240001,아스가르드의 갑옷,Armor,5,Normal,11,HP,10358,2,Character/Player/10240001,6760000 +10241001,아스가르드의 갑옷(불),Armor,5,Fire,12,HP,10571,2,Character/Player/10241001,6760000 +10242001,아스가르드의 갑옷(물),Armor,5,Water,13,HP,10783,2,Character/Player/10242001,6760000 +10243001,아스가르드의 갑옷(땅),Armor,5,Land,14,HP,16494,2,Character/Player/10243001,6760000 +10244001,아스가르드의 갑옷(바람),Armor,5,Wind,15,HP,20647,2,Character/Player/10244001,6760000 +10255000,천상의 고양이,Armor,5,Normal,11,HP,42856,2,Character/Player/10235000,6760000 +10310000,허리끈,Belt,1,Normal,1,SPD,46,2,10310000,954 +10311000,허리끈(불),Belt,1,Fire,2,SPD,62,2,10311000,954 +10312000,허리끈(물),Belt,1,Water,3,SPD,69,2,10312000,954 +10313000,허리끈(땅),Belt,1,Land,4,SPD,239,2,10313000,954 +10314000,허리끈(바람),Belt,1,Wind,5,SPD,610,2,10314000,954 +10320000,가죽 벨트,Belt,2,Normal,6,SPD,137,2,10320000,1496 +10321000,가죽 벨트(불),Belt,2,Fire,7,SPD,141,2,10321000,1496 +10322000,가죽 벨트(물),Belt,2,Water,8,SPD,166,2,10322000,1496 +10323000,가죽 벨트(땅),Belt,2,Land,9,SPD,718,2,10323000,1496 +10324000,가죽 벨트(바람),Belt,2,Wind,10,SPD,1314,2,10324000,1496 +10330000,견고한 벨트,Belt,3,Normal,11,SPD,350,2,10330000,3864 +10331000,견고한 벨트(불),Belt,3,Fire,12,SPD,359,2,10331000,3864 +10332000,견고한 벨트(물),Belt,3,Water,13,SPD,425,2,10332000,3864 +10333000,견고한 벨트(땅),Belt,3,Land,14,SPD,1701,2,10333000,3864 +10334000,견고한 벨트(바람),Belt,3,Wind,15,SPD,2883,2,10334000,3864 +10340000,전쟁 벨트,Belt,4,Normal,11,SPD,1215,2,10340000,96600 +10341000,전쟁 벨트(불),Belt,4,Fire,12,SPD,1262,2,10341000,96600 +10342000,전쟁 벨트(물),Belt,4,Water,13,SPD,2292,2,10342000,96600 +10343000,전쟁 벨트(땅),Belt,4,Land,14,SPD,2292,2,10343000,96600 +10344000,전쟁 벨트(바람),Belt,4,Wind,15,SPD,2292,2,10344000,96600 +10350000,전설의 벨트,Belt,4,Normal,11,SPD,7334,2,10350000,96600 +10351000,전설의 벨트(불),Belt,4,Fire,12,SPD,4584,2,10351000,96600 +10352000,전설의 벨트(물),Belt,4,Water,13,SPD,5272,2,10352000,96600 +10353000,전설의 벨트(땅),Belt,4,Land,14,SPD,5959,2,10353000,96600 +10354000,전설의 벨트(바람),Belt,4,Wind,15,SPD,6647,2,10354000,96600 +10350001,고대의 벨트,Belt,5,Normal,15,SPD,14373,2,10350000,6760000 +10351001,고대의 벨트(불),Belt,5,Fire,15,SPD,10267,2,10351000,6760000 +10352001,고대의 벨트(물),Belt,5,Water,15,SPD,10267,2,10352000,6760000 +10353001,고대의 벨트(땅),Belt,5,Land,15,SPD,14373,2,10353000,6760000 +10354001,고대의 벨트(바람),Belt,5,Wind,15,SPD,14373,2,10354000,6760000 +10410000,얇은 목걸이,Necklace,1,Normal,1,HIT,70,0,10410000,315 +10411000,얇은 목걸이(불),Necklace,1,Fire,2,HIT,81,0,10411000,315 +10412000,얇은 목걸이(물),Necklace,1,Water,3,HIT,99,0,10412000,315 +10413000,얇은 목걸이(땅),Necklace,1,Land,4,HIT,357,0,10413000,315 +10414000,얇은 목걸이(바람),Necklace,1,Wind,5,HIT,863,0,10414000,315 +10420000,수호의 목걸이,Necklace,2,Normal,6,HIT,192,0,10420000,1736 +10421000,수호의 목걸이(불),Necklace,2,Fire,7,HIT,197,0,10421000,1736 +10422000,수호의 목걸이(물),Necklace,2,Water,8,HIT,230,0,10422000,1736 +10423000,수호의 목걸이(땅),Necklace,2,Land,9,HIT,1002,0,10423000,1736 +10424000,수호의 목걸이(바람),Necklace,2,Wind,10,HIT,1682,0,10424000,1736 +10430000,마력의 목걸이,Necklace,3,Normal,11,HIT,510,0,10430000,65040 +10431000,마력의 목걸이(불),Necklace,3,Fire,12,HIT,522,0,10431000,65040 +10432000,마력의 목걸이(물),Necklace,3,Water,13,HIT,608,0,10432000,65040 +10433000,마력의 목걸이(땅),Necklace,3,Land,14,HIT,2151,0,10433000,65040 +10434000,마력의 목걸이(바람),Necklace,3,Wind,15,HIT,2333,0,10434000,65040 +10440000,전사의 목걸이,Necklace,4,Normal,11,HIT,2031,0,10440000,243000 +10441000,전사의 목걸이(불),Necklace,4,Fire,12,HIT,3047,0,10441000,243000 +10442000,전사의 목걸이(물),Necklace,4,Water,13,HIT,3047,0,10442000,243000 +10443000,전사의 목걸이(땅),Necklace,4,Land,14,HIT,3047,0,10443000,243000 +10444000,전사의 목걸이(바람),Necklace,4,Wind,15,HIT,3047,0,10444000,243000 +10450000,전설의 목걸이,Necklace,4,Normal,11,HIT,7466,0,10450000,243000 +10451000,전설의 목걸이(불),Necklace,4,Fire,12,HIT,4666,0,10451000,243000 +10452000,전설의 목걸이(물),Necklace,4,Water,13,HIT,5366,0,10452000,243000 +10453000,전설의 목걸이(땅),Necklace,4,Land,14,HIT,6066,0,10453000,243000 +10454000,전설의 목걸이(바람),Necklace,4,Wind,15,HIT,6766,0,10454000,243000 +10450001,고대의 목걸이,Necklace,5,Normal,15,HIT,15363,0,10450000,6760000 +10451001,고대의 목걸이(불),Necklace,5,Fire,15,HIT,10452,0,10451000,6760000 +10452001,고대의 목걸이(물),Necklace,5,Water,15,HIT,10452,0,10452000,6760000 +10453001,고대의 목걸이(땅),Necklace,5,Land,15,HIT,15363,0,10453000,6760000 +10454001,고대의 목걸이(바람),Necklace,5,Wind,15,HIT,15363,0,10454000,6760000 +10510000,얇은 반지,Ring,1,Normal,1,DEF,8,0,10510000,10 +10511000,얇은 반지(불),Ring,1,Fire,2,DEF,9,0,10511000,10 +10512000,얇은 반지(물),Ring,1,Water,3,DEF,11,0,10512000,10 +10513000,얇은 반지(땅),Ring,1,Land,4,DEF,44,0,10513000,10 +10514000,얇은 반지(바람),Ring,1,Wind,5,DEF,107,0,10514000,10 +10520000,수호의 반지,Ring,2,Normal,6,DEF,23,0,10520000,216 +10521000,수호의 반지(불),Ring,2,Fire,7,DEF,24,0,10521000,216 +10522000,수호의 반지(물),Ring,2,Water,8,DEF,29,0,10522000,216 +10523000,수호의 반지(땅),Ring,2,Land,9,DEF,122,0,10523000,216 +10524000,수호의 반지(바람),Ring,2,Wind,10,DEF,189,0,10524000,216 +10530000,마나 반지,Ring,3,Normal,11,DEF,63,0,10530000,5568 +10531000,마나 반지(불),Ring,3,Fire,12,DEF,65,0,10531000,5568 +10532000,마나 반지(물),Ring,3,Water,13,DEF,74,0,10532000,5568 +10533000,마나 반지(땅),Ring,3,Land,14,DEF,251,0,10533000,5568 +10534000,마나 반지(바람),Ring,3,Wind,15,DEF,270,0,10534000,5568 +10540000,전사의 반지,Ring,4,Normal,11,DEF,864,0,10540000,426000 +10541000,전사의 반지(불),Ring,4,Fire,12,DEF,540,0,10541000,426000 +10542000,전사의 반지(물),Ring,4,Water,13,DEF,621,0,10542000,426000 +10543000,전사의 반지(땅),Ring,4,Land,14,DEF,702,0,10543000,426000 +10544000,전사의 반지(바람),Ring,4,Wind,15,DEF,783,0,10544000,426000 +10550000,고대의 반지,Ring,5,Normal,11,DEF,1946,0,10550000,6760000 +10551000,고대의 반지(불),Ring,5,Fire,12,DEF,1209,0,10551000,6760000 +10552000,고대의 반지(물),Ring,5,Water,13,DEF,1209,0,10552000,6760000 +10553000,고대의 반지(땅),Ring,5,Land,14,DEF,1946,0,10553000,6760000 +10554000,고대의 반지(바람),Ring,5,Wind,15,DEF,1946,0,10554000,6760000 +10620000,AuraSummon1,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10620001,AuraSummon2,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10630000,AuraSummon3,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10630001,AuraSummon4,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10640000,AuraSummon5,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10640001,AuraSummon6,Ring,5,Wind,15,DEF,1946,0,10554000,0 +10650001,AuraSummon7,Ring,5,Wind,15,DEF,1946,0,10554000,0 +11320000,블루 사파이어 벨트,Belt,2,Normal,6,SPD,176,2,11320000,1496 +11420000,블루 사파이어 목걸이,Necklace,2,Normal,6,HIT,227,0,11420000,1736 +11520000,블루 사파이어 반지,Ring,2,Normal,6,DEF,50,0,11520000,216 +12001001,Special Crystal Belt,Belt,2,Normal,0,ATK,1,0,12001001,1496 +12001002,Special Crystal Necklace,Necklace,3,Normal,1,ATK,1,0,12001002,65040 +12001003,Special Crystal Ring,Ring,4,Normal,2,ATK,1,0,12001003,426000 +13001000,Aura,Aura,0,Normal,0,ATK,1,0,10100000,0"; + } +} diff --git a/.Lib9c.Tests/Fixtures/TableCSV/GameConfigSheetFixtures.cs b/.Lib9c.Tests/Fixtures/TableCSV/GameConfigSheetFixtures.cs index 3e0229cb40..af0ae1d5ce 100644 --- a/.Lib9c.Tests/Fixtures/TableCSV/GameConfigSheetFixtures.cs +++ b/.Lib9c.Tests/Fixtures/TableCSV/GameConfigSheetFixtures.cs @@ -37,7 +37,6 @@ public static class GameConfigSheetFixtures character_consumable_slot_2,35 character_consumable_slot_3,100 character_consumable_slot_4,200 -character_consumable_slot_5,350 -"; +character_consumable_slot_5,350"; } } diff --git a/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemRecipeSheetFixtures.cs b/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemRecipeSheetFixtures.cs new file mode 100644 index 0000000000..3be2a418f6 --- /dev/null +++ b/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemRecipeSheetFixtures.cs @@ -0,0 +1,185 @@ +namespace Lib9c.Tests.Fixtures.TableCSV.Item +{ + public static class EquipmentItemRecipeSheetFixtures + { + public const string Default = + @"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,5,3,373,374,375,0,Weapon +2,10111000,303000,2,0,0,5,11,1,2,3,2,Weapon +3,10112000,303000,2,0,0,5,19,4,5,6,2,Weapon +4,10113000,303000,8,0,0,155,51,7,8,9,19,Weapon +5,10114000,303000,12,0,0,477,99,10,11,12,64,Weapon +6,10120000,303001,4,0,0,37,27,376,377,378,8,Weapon +7,10121000,303001,4,0,0,45,29,13,14,15,11,Weapon +8,10122000,303001,6,0,0,89,39,16,17,18,15,Weapon +9,10123000,303001,15,0,0,1167,114,19,20,21,1056,Weapon +10,10124000,303001,24,0,0,7155,174,22,23,24,22560,Weapon +11,10130000,303002,7,0,0,241,63,379,380,381,234,Weapon +12,10131000,303002,8,0,0,257,66,25,26,27,279,Weapon +13,10132000,303002,9,0,0,329,78,28,29,30,317,Weapon +14,10133000,303002,27,0,0,9807,190,31,32,33,41040,Weapon +15,10134000,303002,47,0,0,21585,204,34,35,36,167040,Weapon +16,10130001,303002,17,0,0,1482,130,382,383,384,8340,Weapon +17,10131001,303002,19,0,0,1643,138,37,38,39,14520,Weapon +18,10132001,303002,21,0,0,5190,154,40,41,42,32040,Weapon +19,10133001,303002,61,0,0,28050,220,43,44,45,216180,Weapon +20,10134001,303002,73,0,0,34302,236,46,47,48,495900,Weapon +21,10140000,303003,250,0,0,40000,299,101400001,101400002,101400003,1404000,Weapon +22,10141000,303003,120,0,0,20000,255,101410001,101410002,101410003,1532100,Weapon +23,10142000,303003,120,0,0,24000,265,101420001,101420002,101420003,1532100,Weapon +24,10143000,303003,180,0,0,28000,277,101430001,101430002,101430003,1532100,Weapon +25,10144000,303003,180,0,0,32000,290,101440001,101440002,101440003,1532100,Weapon +26,10150000,303004,360,0,0,3000,330,101500001,101500002,,500000,Weapon +27,10151000,303004,360,0,0,3000,305,101510001,101510002,,500000,Weapon +28,10152000,303004,360,0,0,3000,305,101520001,101520002,101520003,500000,Weapon +29,10153000,303004,360,0,0,3000,330,101530001,101530002,,500000,Weapon +30,10154000,303004,360,0,0,3000,330,101540001,101540002,101540003,500000,Weapon +31,10140001,303003,85,0,0,60375,999,388,389,390,1533000,Weapon +32,10141001,303003,85,0,0,62115,999,61,62,63,1648200,Weapon +33,10142001,303003,86,0,0,63915,999,64,65,66,1664100,Weapon +34,10143001,303003,86,0,0,65775,999,67,68,69,1664100,Weapon +35,10144001,303003,87,0,0,67695,999,70,71,72,1686900,Weapon +36,10150001,303004,117,0,0,156975,999,394,395,396,5619000,Weapon +37,10151001,303004,118,0,0,160815,999,85,86,87,5823300,Weapon +38,10152001,303004,119,0,0,164715,999,88,89,90,5876100,Weapon +39,10153001,303004,121,0,0,168675,999,91,92,93,5974800,Weapon +40,10154001,303004,122,0,0,172695,999,94,95,96,6020700,Weapon +41,10155000,303004,125,0,0,180915,999,397,398,399,6003000,Weapon +42,10210000,303100,2,0,0,5,6,400,401,402,1,Armor +43,10211000,303100,2,0,0,5,13,97,98,99,2,Armor +44,10212000,303100,3,0,0,23,24,100,101,102,3,Armor +45,10213000,303100,10,0,0,210,59,103,104,105,23,Armor +46,10214000,303100,14,0,0,1076,108,106,107,108,742,Armor +47,10220000,303101,5,0,0,70,35,403,404,405,5,Armor +48,10221000,303101,5,0,0,79,37,109,110,111,8,Armor +49,10222000,303101,7,0,0,120,45,112,113,114,11,Armor +50,10223000,303101,16,0,0,1341,123,115,116,117,928,Armor +51,10224000,303101,26,0,0,8361,182,118,119,120,23920,Armor +52,10230000,303102,9,0,0,310,75,406,407,408,300,Armor +53,10231000,303102,10,0,0,348,81,121,122,123,348,Armor +54,10232000,303102,11,0,0,432,93,124,125,126,387,Armor +55,10233000,303102,40,0,0,18426,201,127,128,129,140400,Armor +56,10234000,303102,52,0,0,23991,208,130,131,132,182520,Armor +57,10230001,303102,20,0,0,1824,146,409,410,411,9600,Armor +58,10231001,303102,22,0,0,5463,158,133,134,135,33000,Armor +59,10232001,303102,23,0,0,6189,166,136,137,138,35040,Armor +60,10233001,303102,67,0,0,31056,228,139,140,141,455400,Armor +61,10234001,303102,76,0,0,36195,246,142,143,144,889200,Armor +62,10240000,303103,250,0,0,40000,294,102400001,102400002,102400003,1166700,Armor +63,10241000,303103,120,0,0,20000,261,102410001,102410002,102410003,1173660,Armor +64,10242000,303103,120,0,0,24000,270,102420001,102420002,102420003,1188720,Armor +65,10243000,303103,180,0,0,28000,280,102430001,102430002,102430003,1345500,Armor +66,10244000,303103,180,0,0,32000,287,102440001,102440002,102440003,1345500,Armor +67,10250001,303104,360,0,0,3000,335,102500011,102500012,,500000,Armor +68,10251001,303104,360,0,0,3000,315,102510011,102510012,,500000,Armor +69,10252001,303104,360,0,0,3000,315,102520011,102520012,102520013,1000000,Armor +70,10253001,303104,360,0,0,3000,335,102530011,102530012,,1000000,Armor +71,10254001,303104,360,0,0,3000,335,102540011,102540012,102540013,1000000,Armor +72,10240001,303103,82,0,0,52575,999,415,416,417,1303800,Armor +73,10241001,303103,82,0,0,54015,999,157,158,159,1414500,Armor +74,10242001,303103,83,0,0,55515,999,160,161,162,1433100,Armor +75,10243001,303103,83,0,0,57075,999,163,164,165,1433100,Armor +76,10244001,303103,84,0,0,58695,999,166,167,168,1449000,Armor +77,10250000,303104,88,0,0,69675,999,418,419,420,4039200,Armor +78,10251000,303104,88,0,0,71715,999,169,170,171,4158000,Armor +79,10252000,303104,89,0,0,73815,999,172,173,174,4206600,Armor +80,10253000,303104,90,0,0,75975,999,175,176,177,4252500,Armor +81,10254000,303104,90,0,0,78195,999,178,179,180,4441500,Armor +82,10255000,303104,123,0,0,176775,999,424,425,426,5646600,Armor +83,10310000,303200,2,0,0,5,9,427,428,429,1,Belt +84,10311000,303200,2,0,0,5,20,193,194,195,2,Belt +85,10312000,303200,4,0,0,30,25,196,197,198,5,Belt +86,10313000,303200,12,0,0,274,69,199,200,201,26,Belt +87,10314000,303200,18,0,0,1560,134,202,203,204,954,Belt +88,10320000,303201,6,0,0,99,41,430,431,432,12,Belt +89,10321000,303201,6,0,0,109,43,205,206,207,15,Belt +90,10322000,303201,9,0,0,181,55,208,209,210,22,Belt +91,10323000,303201,22,0,0,5796,162,211,212,213,2992,Belt +92,10324000,303201,45,0,0,20472,203,214,215,216,122220,Belt +93,10330000,303202,10,0,0,389,87,433,434,435,330,Belt +94,10331000,303202,11,0,0,410,90,217,218,219,387,Belt +95,10332000,303202,14,0,0,1119,111,220,221,222,4872,Belt +96,10333000,303202,58,0,0,26637,216,223,224,225,203580,Belt +97,10334000,303202,150,0,0,30000,251,226,227,228,737100,Belt +98,10340000,303203,26,0,0,9054,186,436,437,438,49608,Belt +99,10341000,303203,28,0,0,10620,194,229,230,231,57960,Belt +100,10342000,303203,76,0,0,36015,240,232,233,234,1128600,Belt +101,10343000,303203,76,0,0,36015,240,235,236,237,1128600,Belt +102,10344000,303203,76,0,0,36015,240,238,239,240,1128600,Belt +103,10350000,303203,250,0,0,40000,296,103500001,103500002,103500003,4177800,Belt +104,10351000,303203,120,0,0,20000,260,103510001,103510002,103510003,4347000,Belt +105,10352000,303203,120,0,0,24000,269,103520001,103520002,103520003,4395600,Belt +106,10353000,303203,180,0,0,28000,278,103530001,103530002,103530003,4441500,Belt +107,10354000,303203,180,0,0,32000,287,103540001,103540002,103540003,4638900,Belt +108,10410000,303300,2,0,0,5,15,442,443,444,1,Necklace +109,10411000,303300,2,0,0,11,21,253,254,255,2,Necklace +110,10412000,303300,4,0,0,53,31,256,257,258,5,Necklace +111,10413000,303300,15,0,0,368,84,259,260,261,32,Necklace +112,10414000,303300,20,0,0,4977,150,262,263,264,1060,Necklace +113,10420000,303301,7,0,0,131,47,445,446,447,14,Necklace +114,10421000,303301,8,0,0,143,49,265,266,267,20,Necklace +115,10422000,303301,10,0,0,225,61,268,269,270,25,Necklace +116,10423000,303301,25,0,0,7728,178,271,272,273,3472,Necklace +117,10424000,303301,150,0,0,19419,202,274,275,276,116880,Necklace +118,10430000,303302,13,0,0,1005,102,448,449,450,4320,Necklace +119,10431000,303302,13,0,0,1038,105,277,278,279,4560,Necklace +120,10432000,303302,17,0,0,1409,126,280,281,282,5952,Necklace +121,10433000,303302,55,0,0,25284,212,283,284,285,195120,Necklace +122,10434000,303302,70,0,0,32649,232,286,287,288,472500,Necklace +123,10440000,303303,77,0,0,9093,249,451,452,453,729000,Necklace +124,10441000,303303,77,0,0,36375,249,289,290,291,1528200,Necklace +125,10442000,303303,77,0,0,36375,249,292,293,294,1528200,Necklace +126,10443000,303303,77,0,0,36375,249,295,296,297,1528200,Necklace +127,10444000,303303,77,0,0,36375,249,298,299,300,1528200,Necklace +128,10450000,303303,250,0,0,40000,293,104500001,104500002,104500003,4361400,Necklace +129,10451000,303303,120,0,0,20000,255,104510001,104510002,104510003,4536000,Necklace +130,10452000,303303,120,0,0,24000,264,104520001,104520002,104520003,4584600,Necklace +131,10453000,303303,180,0,0,28000,274,104530001,104530002,104530003,4630500,Necklace +132,10454000,303303,180,0,0,32000,284,104540001,104540002,104540003,4889100,Necklace +133,10510000,303400,2,0,0,5,17,457,458,459,1,Ring +134,10511000,303400,2,0,0,17,22,313,314,315,2,Ring +135,10512000,303400,5,0,0,61,33,316,317,318,5,Ring +136,10513000,303400,17,0,0,454,96,319,320,321,38,Ring +137,10514000,303400,24,0,0,6642,170,322,323,324,2544,Ring +138,10520000,303401,8,0,0,168,53,460,461,462,16,Ring +139,10521000,303401,9,0,0,195,57,325,326,327,22,Ring +140,10522000,303401,12,0,0,292,72,328,329,330,29,Ring +141,10523000,303401,28,0,0,17493,198,331,332,333,3808,Ring +142,10524000,303401,49,0,0,22758,205,334,335,336,132900,Ring +143,10530000,303402,15,0,0,1220,117,463,464,465,4980,Ring +144,10531000,303402,16,0,0,1278,120,337,338,339,5568,Ring +145,10532000,303402,19,0,0,1731,142,340,341,342,6648,Ring +146,10533000,303402,64,0,0,29523,224,343,344,345,748800,Ring +147,10534000,303402,76,0,0,36075,243,346,347,348,889200,Ring +148,10540000,303403,250,0,0,40000,298,105400001,105400002,105400003,1170000,Ring +149,10541000,303403,120,0,0,20000,258,105410001,105410002,105410003,1160400,Ring +150,10542000,303403,120,0,0,24000,268,105420001,105420002,105420003,1160760,Ring +151,10543000,303403,180,0,0,28000,275,105430001,105430002,105430003,1340700,Ring +152,10544000,303403,180,0,0,32000,285,105440001,105440002,105440003,1340700,Ring +153,10550000,303404,360,0,0,3000,340,105500001,105500002,,500000,Ring +154,10551000,303404,360,0,0,3000,325,105510001,105510002,,500000,Ring +155,10552000,303404,360,0,0,3000,325,105520001,105520002,105520003,1000000,Ring +156,10553000,303404,360,0,0,3000,340,105530001,105530002,,1000000,Ring +157,10554000,303404,360,0,0,3000,340,105540001,105540002,105540003,1000000,Ring +158,12001001,600101,100,0,0,10,999,120010011,120010012,120010013,0,Belt +159,12001002,600101,100,0,0,10,999,120010021,120010022,120010023,0,Necklace +160,12001003,600101,50,0,0,10,999,120010031,120010032,120010033,0,Ring +161,10350001,303204,360,0,0,3000,330,103500011,103500012,,500000,Belt +162,10351001,303204,360,0,0,3000,310,103510011,103510012,,500000,Belt +163,10352001,303204,360,0,0,3000,310,103520011,103520012,103520013,1000000,Belt +164,10353001,303204,360,0,0,3000,330,103530011,103530012,,1000000,Belt +165,10354001,303204,360,0,0,3000,330,103540011,103540012,103540013,1000000,Belt +166,10450001,303304,360,0,0,3000,335,104500011,104500012,,500000,Necklace +167,10451001,303304,360,0,0,3000,320,104510011,104510012,,500000,Necklace +168,10452001,303304,360,0,0,3000,320,104520011,104520012,104520013,1000000,Necklace +169,10453001,303304,360,0,0,3000,335,104530011,104530012,,1000000,Necklace +170,10454001,303304,360,0,0,3000,335,104540011,104540012,104540013,1000000,Necklace +171 ,10620000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +172,10630000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +173,10640000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +174,10620001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +175,10630001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +176,10640001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace +177,10650001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace"; + } +} diff --git a/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemSubRecipeSheetFixtures.cs b/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemSubRecipeSheetFixtures.cs new file mode 100644 index 0000000000..043359adea --- /dev/null +++ b/.Lib9c.Tests/Fixtures/TableCSV/Item/EquipmentItemSubRecipeSheetFixtures.cs @@ -0,0 +1,878 @@ +namespace Lib9c.Tests.Fixtures.TableCSV.Item +{ + public static class EquipmentItemSubRecipeSheetFixtures + { + public const string V1 = + @"id,required_action_point,required_gold,required_block_index,material_id,material_count,material_2_id,material_2_count,material_3_id,material_3_count,option_id,option_ratio,option_2_id,option_2_ratio,option_3_id,option_3_ratio,option_4_id,option_4_ratio,max_option_limit +1,0,0,0,306040,1,306041,1,306023,1,1,0.74,2,0.2,3,0.06,,,1 +2,0,0,0,306040,8,306041,4,306024,8,4,0.46,5,0.35,6,0.11,7,0.08,1 +3,0,450,240,306056,15,306061,8,306068,6,8,0.48,9,0.38,10,0.09,11,0.05,2 +4,0,0,0,306040,1,306044,1,306001,1,12,0.56,13,0.32,14,0.12,,,1 +5,0,0,0,306040,8,306000,4,306002,8,15,0.7,16,0.16,17,0.09,18,0.05,1 +6,0,450,240,301000,5,306000,12,306001,6,19,0.61,20,0.26,21,0.08,22,0.05,2 +7,0,0,0,306040,12,306043,6,306011,6,23,0.62,24,0.24,25,0.14,,,1 +8,0,0,0,306040,21,306043,15,306010,21,26,0.41,27,0.36,28,0.15,29,0.08,1 +9,0,450,240,301000,5,306043,15,306009,6,30,0.56,31,0.33,32,0.07,33,0.04,2 +10,0,0,0,306040,18,306050,12,306052,12,34,0.64,35,0.19,36,0.17,,,1 +11,0,0,0,306040,30,306051,24,306052,30,37,0.59,38,0.25,39,0.1,40,0.06,1 +12,0,450,0,301000,24,306042,18,306052,24,41,0.51,42,0.35,43,0.1,44,0.04,2 +13,0,0,0,306041,8,306023,4,306024,4,45,0.74,46,0.2,47,0.06,,,1 +14,0,0,0,306040,18,306023,12,306024,18,48,0.46,49,0.35,50,0.11,51,0.08,1 +15,0,900,0,301000,12,306041,8,306024,12,52,0.48,53,0.38,54,0.09,55,0.05,2 +16,0,0,0,306040,8,306044,4,306000,4,56,0.56,57,0.32,58,0.12,,,1 +17,0,0,0,306044,18,306001,12,306002,18,59,0.7,60,0.16,61,0.09,62,0.05,1 +18,0,900,0,301000,12,306000,8,306001,12,63,0.61,64,0.26,65,0.08,66,0.05,2 +19,0,0,0,306043,18,306013,12,306014,12,67,0.62,68,0.24,69,0.14,,,1 +20,0,0,0,306040,30,306043,24,306012,30,70,0.41,71,0.36,72,0.15,73,0.08,1 +21,0,1350,0,301000,24,306012,18,306013,24,74,0.56,75,0.33,76,0.07,77,0.04,2 +22,0,0,0,306040,36,306042,24,306050,24,78,0.64,79,0.19,80,0.17,,,1 +23,0,0,0,306040,50,306042,36,306050,50,81,0.59,82,0.25,83,0.1,84,0.06,1 +24,0,2700,0,301000,50,306051,36,306052,50,85,0.51,86,0.35,87,0.1,88,0.04,2 +25,0,0,0,306040,15,306041,9,306027,9,89,0.74,90,0.2,91,0.06,,,1 +26,0,0,0,306040,24,306041,18,306028,24,92,0.46,93,0.35,94,0.11,95,0.08,1 +27,0,1350,0,301000,21,306026,15,306027,21,96,0.48,97,0.38,98,0.09,99,0.05,2 +28,0,0,0,306040,15,306044,9,306004,9,100,0.56,101,0.32,102,0.12,,,1 +29,0,0,0,306040,24,306003,18,306005,24,103,0.7,104,0.16,105,0.09,106,0.05,1 +30,0,1350,0,301000,21,306003,15,306004,21,107,0.61,108,0.26,109,0.08,110,0.05,2 +31,0,0,0,306040,36,306043,24,306012,24,111,0.62,112,0.24,113,0.14,,,1 +32,0,0,0,306043,50,306013,36,306014,50,114,0.41,115,0.36,116,0.15,117,0.08,1 +33,0,2700,0,301000,50,306013,36,306014,50,118,0.56,119,0.33,120,0.07,121,0.04,2 +34,0,0,0,306053,36,306054,24,306045,24,122,0.64,123,0.19,124,0.17,,,1 +35,10,0,40800,306055,50,306045,44,306047,20,125,0.59,126,0.25,127,0.1,128,0.06,1 +36,0,4050,0,301000,50,306055,36,306047,50,129,0.51,130,0.35,131,0.1,132,0.04,2 +37,0,0,0,306040,18,306041,12,306028,12,133,0.74,134,0.2,135,0.06,,,1 +38,0,0,0,306040,30,306041,24,306027,30,136,0.46,137,0.35,138,0.11,139,0.08,1 +39,0,1350,0,301000,24,306026,18,306027,24,140,0.48,141,0.38,142,0.09,143,0.05,2 +40,0,0,0,306040,18,306003,12,306004,12,144,0.56,145,0.32,146,0.12,,,1 +41,0,0,0,306040,30,306044,24,306003,30,147,0.7,148,0.16,149,0.09,150,0.05,1 +42,0,1350,0,301000,24,306004,18,306005,24,151,0.61,152,0.26,153,0.08,154,0.05,2 +43,0,0,0,306015,36,306016,24,306045,24,155,0.62,156,0.24,157,0.14,,,1 +44,10,0,48960,306017,50,306045,55,306048,30,158,0.41,159,0.36,160,0.15,161,0.08,1 +45,0,2700,0,301000,50,306017,36,306048,50,162,0.56,163,0.33,164,0.07,165,0.04,2 +46,0,0,0,306054,36,306055,24,306045,24,166,0.64,167,0.19,168,0.17,,,1 +47,0,0,0,306055,50,306045,36,306047,50,169,0.59,170,0.25,171,0.1,172,0.06,1 +48,0,4050,0,301000,50,306045,36,306047,50,173,0.51,174,0.35,175,0.1,176,0.04,2 +49,0,0,0,306040,36,306041,24,306027,24,177,0.74,178,0.2,179,0.06,,,1 +50,0,0,0,306040,50,306026,36,306028,50,180,0.46,181,0.35,182,0.11,183,0.08,1 +51,0,2700,0,301000,50,306041,36,306027,50,184,0.48,185,0.38,186,0.09,187,0.05,2 +52,0,0,0,306040,36,306044,24,306004,24,188,0.56,189,0.32,190,0.12,,,1 +53,0,0,0,306040,50,306044,36,306003,50,191,0.7,192,0.16,193,0.09,194,0.05,1 +54,0,2700,0,301000,50,306044,36,306004,50,195,0.61,196,0.26,197,0.08,198,0.05,2 +55,0,0,0,306015,36,306017,24,306045,24,199,0.62,200,0.24,201,0.14,,,1 +56,0,0,0,306015,50,306017,36,306048,50,202,0.41,203,0.36,204,0.15,205,0.08,1 +57,0,4050,0,301000,50,306045,36,306048,50,206,0.56,207,0.33,208,0.07,209,0.04,2 +58,0,0,0,306053,36,306054,24,306055,24,210,0.64,211,0.19,212,0.17,,,1 +59,0,0,0,306053,50,306054,36,306055,50,213,0.59,214,0.25,215,0.1,216,0.06,1 +60,0,5400,0,301000,50,306055,36,306047,50,217,0.51,218,0.35,219,0.1,220,0.04,2 +61,0,0,0,306029,36,306030,24,306045,24,221,0.74,222,0.2,223,0.06,,,1 +62,0,0,0,306029,50,306030,36,306046,50,224,0.46,225,0.35,226,0.11,227,0.08,1 +63,0,2700,0,301000,50,306031,36,306045,50,228,0.48,229,0.38,230,0.09,231,0.05,2 +64,0,0,0,306006,36,306007,24,306008,24,232,0.56,233,0.32,234,0.12,,,1 +65,0,0,0,306007,50,306008,36,306045,50,235,0.7,236,0.16,237,0.09,238,0.05,1 +66,0,2700,0,301000,50,306045,36,306049,50,239,0.61,240,0.26,241,0.08,242,0.05,2 +67,0,0,0,306015,36,306016,24,306048,24,243,0.62,244,0.24,245,0.14,,,1 +68,0,0,0,306015,50,306045,36,306048,50,246,0.41,247,0.36,248,0.15,249,0.08,1 +69,0,4050,0,301000,50,306045,36,306048,50,250,0.56,251,0.33,252,0.07,253,0.04,2 +70,0,0,0,306053,36,306054,24,306047,24,254,0.64,255,0.19,256,0.17,,,1 +71,0,0,0,306053,50,306055,36,306045,50,257,0.59,258,0.25,259,0.1,260,0.06,1 +72,0,5400,0,301000,50,306045,36,306047,50,261,0.51,262,0.35,263,0.1,264,0.04,2 +73,0,0,0,306029,36,306030,24,306045,24,265,0.74,266,0.2,267,0.06,,,1 +74,0,0,0,306030,50,306031,36,306046,50,268,0.46,269,0.35,270,0.11,271,0.08,1 +75,0,4050,0,301000,50,306045,36,306046,50,272,0.48,273,0.38,274,0.09,275,0.05,2 +76,0,0,0,306006,36,306008,24,306045,24,276,0.56,277,0.32,278,0.12,,,1 +77,0,0,0,306007,50,306008,36,306049,50,279,0.7,280,0.16,281,0.09,282,0.05,1 +78,0,4050,0,301000,50,306008,36,306049,50,283,0.61,284,0.26,285,0.08,286,0.05,2 +79,0,0,0,306015,36,306016,24,306045,24,287,0.62,288,0.24,289,0.14,,,1 +80,0,0,0,306015,50,306017,36,306045,50,290,0.41,291,0.36,292,0.15,293,0.08,1 +81,0,5400,0,301000,50,306017,36,306048,50,294,0.56,295,0.33,296,0.07,297,0.04,2 +82,0,0,0,306053,36,306054,24,306055,24,298,0.64,299,0.19,300,0.17,,,1 +83,0,0,0,306053,50,306054,36,306055,50,301,0.59,302,0.25,303,0.1,304,0.06,1 +84,0,8100,0,301000,50,306055,36,306045,50,305,0.51,306,0.35,307,0.1,308,0.04,2 +85,0,0,0,306029,36,306030,24,306031,24,309,0.74,310,0.2,311,0.06,,,1 +86,0,0,0,306030,50,306031,36,306045,50,312,0.46,313,0.35,314,0.11,315,0.08,1 +87,0,4050,0,301000,50,306030,36,306045,50,316,0.48,317,0.38,318,0.09,319,0.05,2 +88,0,0,0,306006,36,306007,24,306045,24,320,0.56,321,0.32,322,0.12,,,1 +89,0,0,0,306007,50,306008,36,306049,50,323,0.7,324,0.16,325,0.09,326,0.05,1 +90,0,4050,0,301000,50,306008,36,306045,50,327,0.61,328,0.26,329,0.08,330,0.05,2 +91,0,0,0,306015,36,306016,24,306045,24,331,0.62,332,0.24,333,0.14,,,1 +92,0,0,0,306017,50,306045,36,306048,50,334,0.41,335,0.36,336,0.15,337,0.08,1 +93,0,5400,0,301000,50,306045,36,306048,50,338,0.56,339,0.33,340,0.07,341,0.04,2 +94,0,0,0,306053,36,306054,24,306045,24,342,0.64,343,0.19,344,0.17,,,1 +95,0,0,0,306053,50,306055,36,306045,50,345,0.59,346,0.25,347,0.1,348,0.06,1 +96,0,8100,0,301000,50,306055,36,306047,50,349,0.51,350,0.35,351,0.1,352,0.04,2 +97,0,0,0,306040,1,306041,1,306025,1,353,0.74,354,0.2,355,0.06,,,1 +98,0,0,0,306040,8,306024,4,306025,8,356,0.46,357,0.35,358,0.11,359,0.08,1 +99,0,300,720,306056,15,306060,9,306066,9,360,0.48,361,0.38,362,0.09,363,0.05,2 +100,0,0,0,306040,1,306000,1,306002,1,364,0.56,365,0.32,366,0.12,,,1 +101,0,0,0,306040,8,306044,4,306001,8,367,0.7,368,0.16,369,0.09,370,0.05,1 +102,0,300,720,301000,15,306000,25,306001,6,371,0.61,372,0.26,373,0.08,374,0.05,2 +103,0,0,0,306040,12,306010,6,306011,6,375,0.62,376,0.24,377,0.14,,,1 +104,0,0,0,306040,21,306043,15,306009,21,378,0.41,379,0.36,380,0.15,381,0.08,1 +105,0,300,720,301000,15,306010,9,306011,7,382,0.56,383,0.33,384,0.07,385,0.04,2 +106,0,0,0,306040,18,306042,12,306050,12,386,0.64,387,0.19,388,0.17,,,1 +107,0,0,0,306040,30,306050,24,306051,30,389,0.59,390,0.25,391,0.1,392,0.06,1 +108,0,300,0,301000,24,306050,18,306051,24,393,0.51,394,0.35,395,0.1,396,0.04,2 +109,0,0,0,306040,8,306023,4,306024,4,397,0.74,398,0.2,399,0.06,,,1 +110,0,0,0,306040,18,306041,12,306025,18,400,0.46,401,0.35,402,0.11,403,0.08,1 +111,0,600,0,301000,12,306023,8,306024,12,404,0.48,405,0.38,406,0.09,407,0.05,2 +112,0,0,0,306040,8,306044,4,306000,4,408,0.56,409,0.32,410,0.12,,,1 +113,0,0,0,306044,18,306000,12,306001,18,411,0.7,412,0.16,413,0.09,414,0.05,1 +114,0,600,0,301000,12,306000,8,306001,12,415,0.61,416,0.26,417,0.08,418,0.05,2 +115,0,0,0,306040,18,306043,12,306013,12,419,0.62,420,0.24,421,0.14,,,1 +116,0,0,0,306040,30,306012,24,306014,30,422,0.41,423,0.36,424,0.15,425,0.08,1 +117,0,900,0,301000,24,306013,18,306014,24,426,0.56,427,0.33,428,0.07,429,0.04,2 +118,0,0,0,306040,36,306042,24,306051,24,430,0.64,431,0.19,432,0.17,,,1 +119,0,0,0,306040,50,306051,36,306052,50,433,0.59,434,0.25,435,0.1,436,0.06,1 +120,0,1800,0,301000,50,306050,36,306052,50,437,0.51,438,0.35,439,0.1,440,0.04,2 +121,0,0,0,306040,15,306041,9,306027,9,441,0.74,442,0.2,443,0.06,,,1 +122,0,0,0,306041,24,306027,18,306028,24,444,0.46,445,0.35,446,0.11,447,0.08,1 +123,0,900,0,301000,21,306027,15,306028,21,448,0.48,449,0.38,450,0.09,451,0.05,2 +124,0,0,0,306040,15,306044,9,306003,9,452,0.56,453,0.32,454,0.12,,,1 +125,0,0,0,306044,24,306004,18,306005,24,455,0.7,456,0.16,457,0.09,458,0.05,1 +126,0,900,0,301000,21,306003,15,306005,21,459,0.61,460,0.26,461,0.08,462,0.05,2 +127,0,0,0,306015,36,306016,24,306045,24,463,0.62,464,0.24,465,0.14,,,1 +128,10,0,40800,306017,50,306045,44,306048,20,466,0.41,467,0.36,468,0.15,469,0.08,1 +129,0,1800,0,301000,50,306017,36,306048,50,470,0.56,471,0.33,472,0.07,473,0.04,2 +130,0,0,0,306053,36,306054,24,306045,24,474,0.64,475,0.19,476,0.17,,,1 +131,10,0,44880,306055,50,306045,49,306047,25,477,0.59,478,0.25,479,0.1,480,0.06,1 +132,0,2700,0,301000,50,306055,36,306047,50,481,0.51,482,0.35,483,0.1,484,0.04,2 +133,0,0,0,306040,18,306041,12,306027,12,485,0.74,486,0.2,487,0.06,,,1 +134,0,0,0,306040,30,306041,24,306026,30,488,0.46,489,0.35,490,0.11,491,0.08,1 +135,0,900,0,301000,24,306027,18,306028,24,492,0.48,493,0.38,494,0.09,495,0.05,2 +136,0,0,0,306040,18,306044,12,306004,12,496,0.56,497,0.32,498,0.12,,,1 +137,0,0,0,306044,30,306003,24,306004,30,499,0.7,500,0.16,501,0.09,502,0.05,1 +138,0,900,0,301000,24,306003,18,306004,24,503,0.61,504,0.26,505,0.08,506,0.05,2 +139,0,0,0,306015,36,306017,24,306048,24,507,0.62,508,0.24,509,0.14,,,1 +140,0,0,0,306017,50,306045,36,306048,50,510,0.41,511,0.36,512,0.15,513,0.08,1 +141,0,1800,0,301000,50,306045,36,306048,50,514,0.56,515,0.33,516,0.07,517,0.04,2 +142,0,0,0,306053,36,306054,24,306055,24,518,0.64,519,0.19,520,0.17,,,1 +143,0,0,0,306054,50,306045,36,306047,50,521,0.59,522,0.25,523,0.1,524,0.06,1 +144,0,2700,0,301000,50,306045,36,306047,50,525,0.51,526,0.35,527,0.1,528,0.04,2 +145,0,0,0,306041,36,306026,24,306027,24,529,0.74,530,0.2,531,0.06,,,1 +146,0,0,0,306040,50,306041,36,306027,50,532,0.46,533,0.35,534,0.11,535,0.08,1 +147,0,1800,0,301000,50,306026,36,306028,50,536,0.48,537,0.38,538,0.09,539,0.05,2 +148,0,0,0,306040,36,306044,24,306005,24,540,0.56,541,0.32,542,0.12,,,1 +149,0,0,0,306040,50,306004,36,306005,50,543,0.7,544,0.16,545,0.09,546,0.05,1 +150,0,1800,0,301000,50,306044,36,306004,50,547,0.61,548,0.26,549,0.08,550,0.05,2 +151,0,0,0,306015,36,306017,24,306045,24,551,0.62,552,0.24,553,0.14,,,1 +152,0,0,0,306015,50,306016,36,306017,50,554,0.41,555,0.36,556,0.15,557,0.08,1 +153,0,2700,0,301000,50,306017,36,306045,50,558,0.56,559,0.33,560,0.07,561,0.04,2 +154,0,0,0,306053,36,306054,24,306045,24,562,0.64,563,0.19,564,0.17,,,1 +155,0,0,0,306055,50,306045,36,306047,50,565,0.59,566,0.25,567,0.1,568,0.06,1 +156,0,3600,0,301000,50,306055,36,306045,50,569,0.51,570,0.35,571,0.1,572,0.04,2 +157,0,0,0,306029,36,306030,24,306046,24,573,0.74,574,0.2,575,0.06,,,1 +158,0,0,0,306029,50,306030,36,306031,50,576,0.46,577,0.35,578,0.11,579,0.08,1 +159,0,1800,0,301000,50,306031,36,306046,50,580,0.48,581,0.38,582,0.09,583,0.05,2 +160,0,0,0,306006,36,306008,24,306045,24,584,0.56,585,0.32,586,0.12,,,1 +161,0,0,0,306007,50,306008,36,306049,50,587,0.7,588,0.16,589,0.09,590,0.05,1 +162,0,1800,0,301000,50,306007,36,306008,50,591,0.61,592,0.26,593,0.08,594,0.05,2 +163,0,0,0,306015,36,306016,24,306048,24,595,0.62,596,0.24,597,0.14,,,1 +164,0,0,0,306015,50,306017,36,306045,50,598,0.41,599,0.36,600,0.15,601,0.08,1 +165,0,2700,0,301000,50,306045,36,306048,50,602,0.56,603,0.33,604,0.07,605,0.04,2 +166,0,0,0,306054,36,306045,24,306047,24,606,0.64,607,0.19,608,0.17,,,1 +167,0,0,0,306053,50,306054,36,306047,50,609,0.59,610,0.25,611,0.1,612,0.06,1 +168,0,3600,0,301000,50,306045,36,306047,50,613,0.51,614,0.35,615,0.1,616,0.04,2 +169,0,0,0,306029,36,306030,24,306045,24,617,0.74,618,0.2,619,0.06,,,1 +170,0,0,0,306029,50,306031,36,306046,50,620,0.46,621,0.35,622,0.11,623,0.08,1 +171,0,2700,0,301000,50,306045,36,306046,50,624,0.48,625,0.38,626,0.09,627,0.05,2 +172,0,0,0,306006,36,306008,24,306049,24,628,0.56,629,0.32,630,0.12,,,1 +173,0,0,0,306006,50,306008,36,306045,50,631,0.7,632,0.16,633,0.09,634,0.05,1 +174,0,2700,0,301000,50,306045,36,306049,50,635,0.61,636,0.26,637,0.08,638,0.05,2 +175,0,0,0,306015,36,306016,24,306017,24,639,0.62,640,0.24,641,0.14,,,1 +176,0,0,0,306015,50,306016,36,306048,50,642,0.41,643,0.36,644,0.15,645,0.08,1 +177,0,3600,0,301000,50,306017,36,306048,50,646,0.56,647,0.33,648,0.07,649,0.04,2 +178,0,0,0,306053,36,306054,24,306047,24,650,0.64,651,0.19,652,0.17,,,1 +179,0,0,0,306053,50,306054,36,306047,50,653,0.59,654,0.25,655,0.1,656,0.06,1 +180,0,5400,0,301000,50,306045,36,306047,50,657,0.51,658,0.35,659,0.1,660,0.04,2 +181,0,0,0,306029,36,306030,24,306046,24,661,0.74,662,0.2,663,0.06,,,1 +182,0,0,0,306029,50,306031,36,306046,50,664,0.46,665,0.35,666,0.11,667,0.08,1 +183,0,2700,0,301000,50,306031,36,306045,50,668,0.48,669,0.38,670,0.09,671,0.05,2 +184,0,0,0,306006,36,306007,24,306049,24,672,0.56,673,0.32,674,0.12,,,1 +185,0,0,0,306006,50,306008,36,306049,50,675,0.7,676,0.16,677,0.09,678,0.05,1 +186,0,2700,0,301000,50,306045,36,306049,50,679,0.61,680,0.26,681,0.08,682,0.05,2 +187,0,0,0,306015,36,306016,24,306017,24,683,0.62,684,0.24,685,0.14,,,1 +188,0,0,0,306015,50,306016,36,306017,50,686,0.41,687,0.36,688,0.15,689,0.08,1 +189,0,3600,0,301000,50,306045,36,306048,50,690,0.56,691,0.33,692,0.07,693,0.04,2 +190,0,0,0,306053,36,306054,24,306055,24,694,0.64,695,0.19,696,0.17,,,1 +191,0,0,0,306053,50,306054,36,306047,50,697,0.59,698,0.25,699,0.1,700,0.06,1 +192,0,5400,0,301000,50,306045,36,306047,50,701,0.51,702,0.35,703,0.1,704,0.04,2 +193,0,0,0,306040,1,306041,1,306025,1,705,0.74,706,0.2,707,0.06,,,1 +194,0,0,0,306040,8,306041,4,306025,8,708,0.46,709,0.35,710,0.11,711,0.08,1 +195,0,300,720,306058,12,306064,8,306065,4,712,0.48,713,0.38,714,0.09,715,0.05,2 +196,0,0,0,306040,1,306000,1,306001,1,716,0.56,717,0.32,718,0.12,,,1 +197,0,0,0,306044,8,306000,4,306002,8,719,0.7,720,0.16,721,0.09,722,0.05,1 +198,0,300,720,301000,12,306001,8,306002,4,723,0.61,724,0.26,725,0.08,726,0.05,2 +199,0,0,0,306040,12,306043,6,306009,6,727,0.62,728,0.24,729,0.14,,,1 +200,0,0,0,306043,21,306009,15,306011,21,730,0.41,731,0.36,732,0.15,733,0.08,1 +201,0,300,720,301000,12,306009,8,306011,4,734,0.56,735,0.33,736,0.07,737,0.04,2 +202,0,0,0,306040,18,306050,12,306051,12,738,0.64,739,0.19,740,0.17,,,1 +203,0,0,0,306040,30,306042,24,306051,30,741,0.59,742,0.25,743,0.1,744,0.06,1 +204,0,300,0,301000,24,306050,18,306051,24,745,0.51,746,0.35,747,0.1,748,0.04,2 +205,0,0,0,306040,8,306041,4,306023,4,749,0.74,750,0.2,751,0.06,,,1 +206,0,0,0,306040,18,306023,12,306025,18,752,0.46,753,0.35,754,0.11,755,0.08,1 +207,0,600,0,301000,12,306023,8,306024,12,756,0.48,757,0.38,758,0.09,759,0.05,2 +208,0,0,0,306040,8,306044,4,306000,4,760,0.56,761,0.32,762,0.12,,,1 +209,0,0,0,306040,18,306000,12,306002,18,763,0.7,764,0.16,765,0.09,766,0.05,1 +210,0,600,0,301000,12,306000,8,306002,12,767,0.61,768,0.26,769,0.08,770,0.05,2 +211,0,0,0,306040,18,306043,12,306012,12,771,0.62,772,0.24,773,0.14,,,1 +212,0,0,0,306040,30,306043,24,306012,30,774,0.41,775,0.36,776,0.15,777,0.08,1 +213,0,900,0,301000,24,306012,18,306014,24,778,0.56,779,0.33,780,0.07,781,0.04,2 +214,0,0,0,306053,36,306054,24,306045,24,782,0.64,783,0.19,784,0.17,,,1 +215,10,0,40800,306055,50,306045,44,306047,20,785,0.59,786,0.25,787,0.1,788,0.06,1 +216,0,1800,0,301000,50,306055,36,306047,50,789,0.51,790,0.35,791,0.1,792,0.04,2 +217,0,0,0,306040,15,306041,9,306026,9,793,0.74,794,0.2,795,0.06,,,1 +218,0,0,0,306041,24,306027,18,306028,24,796,0.46,797,0.35,798,0.11,799,0.08,1 +219,0,900,0,301000,21,306027,15,306028,21,800,0.48,801,0.38,802,0.09,803,0.05,2 +220,0,0,0,306040,15,306044,9,306004,9,804,0.56,805,0.32,806,0.12,,,1 +221,0,0,0,306040,24,306044,18,306004,24,807,0.7,808,0.16,809,0.09,810,0.05,1 +222,0,900,0,301000,21,306004,15,306005,21,811,0.61,812,0.26,813,0.08,814,0.05,2 +223,0,0,0,306015,36,306016,24,306045,24,815,0.62,816,0.24,817,0.14,,,1 +224,10,0,44880,306017,50,306045,49,306048,25,818,0.41,819,0.36,820,0.15,821,0.08,1 +225,0,1800,0,301000,50,306017,36,306048,50,822,0.56,823,0.33,824,0.07,825,0.04,2 +226,0,0,0,306053,36,306054,24,306047,24,826,0.64,827,0.19,828,0.17,,,1 +227,0,0,0,306053,50,306045,36,306047,50,829,0.59,830,0.25,831,0.1,832,0.06,1 +228,0,2700,0,301000,50,306045,36,306047,50,833,0.51,834,0.35,835,0.1,836,0.04,2 +229,0,0,0,306040,36,306041,24,306026,24,837,0.74,838,0.2,839,0.06,,,1 +230,0,0,0,306040,50,306041,36,306027,50,840,0.46,841,0.35,842,0.11,843,0.08,1 +231,0,1800,0,301000,50,306027,36,306028,50,844,0.48,845,0.38,846,0.09,847,0.05,2 +232,0,0,0,306040,36,306044,24,306004,24,848,0.56,849,0.32,850,0.12,,,1 +233,0,0,0,306040,50,306044,36,306003,50,851,0.7,852,0.16,853,0.09,854,0.05,1 +234,0,1800,0,301000,50,306004,36,306005,50,855,0.61,856,0.26,857,0.08,858,0.05,2 +235,0,0,0,306015,36,306016,24,306017,24,859,0.62,860,0.24,861,0.14,,,1 +236,0,0,0,306015,50,306016,36,306045,50,862,0.41,863,0.36,864,0.15,865,0.08,1 +237,0,2700,0,301000,50,306017,36,306045,50,866,0.56,867,0.33,868,0.07,869,0.04,2 +238,0,0,0,306053,36,306054,24,306045,24,870,0.64,871,0.19,872,0.17,,,1 +239,0,0,0,306053,50,306054,36,306045,50,873,0.59,874,0.25,875,0.1,876,0.06,1 +240,0,3600,0,301000,50,306045,36,306047,50,877,0.51,878,0.35,879,0.1,880,0.04,2 +241,0,0,0,306029,36,306030,24,306045,24,881,0.74,882,0.2,883,0.06,,,1 +242,0,0,0,306030,50,306045,36,306046,50,884,0.46,885,0.35,886,0.11,887,0.08,1 +243,0,2700,0,301000,50,306045,36,306046,50,888,0.48,889,0.38,890,0.09,891,0.05,2 +244,0,0,0,306006,36,306008,24,306045,24,892,0.56,893,0.32,894,0.12,,,1 +245,0,0,0,306008,50,306045,36,306049,50,895,0.7,896,0.16,897,0.09,898,0.05,1 +246,0,2700,0,301000,50,306045,36,306049,50,899,0.61,900,0.26,901,0.08,902,0.05,2 +247,0,0,0,306016,36,306017,24,306045,24,903,0.62,904,0.24,905,0.14,,,1 +248,0,0,0,306015,50,306016,36,306048,50,906,0.41,907,0.36,908,0.15,909,0.08,1 +249,0,3600,0,301000,50,306017,36,306048,50,910,0.56,911,0.33,912,0.07,913,0.04,2 +250,0,0,0,306053,36,306054,24,306045,24,914,0.64,915,0.19,916,0.17,,,1 +251,0,0,0,306053,50,306055,36,306045,50,917,0.59,918,0.25,919,0.1,920,0.06,1 +252,0,5400,0,301000,50,306054,36,306045,50,921,0.51,922,0.35,923,0.1,924,0.04,2 +253,0,0,0,306040,1,306041,1,306025,1,925,0.74,926,0.2,927,0.06,,,1 +254,0,0,0,306041,8,306023,4,306024,8,928,0.46,929,0.35,930,0.11,931,0.08,1 +255,0,300,1200,306062,8,306059,10,306063,4,932,0.48,933,0.38,934,0.09,935,0.05,2 +256,0,0,0,306040,1,306044,1,306001,1,936,0.56,937,0.32,938,0.12,,,1 +257,0,0,0,306040,8,306044,4,306002,8,939,0.7,940,0.16,941,0.09,942,0.05,1 +258,0,300,1200,301000,25,306001,12,306002,6,943,0.61,944,0.26,945,0.08,946,0.05,2 +259,0,0,0,306040,12,306043,6,306009,6,947,0.62,948,0.24,949,0.14,,,1 +260,0,0,0,306040,21,306010,15,306011,21,950,0.41,951,0.36,952,0.15,953,0.08,1 +261,0,300,1200,301000,20,306010,6,306011,6,954,0.56,955,0.33,956,0.07,957,0.04,2 +262,0,0,0,306040,18,306042,12,306051,12,958,0.64,959,0.19,960,0.17,,,1 +263,0,0,0,306040,30,306042,24,306051,30,961,0.59,962,0.25,963,0.1,964,0.06,1 +264,0,300,0,301000,24,306042,18,306051,24,965,0.51,966,0.35,967,0.1,968,0.04,2 +265,0,0,0,306040,8,306041,4,306024,4,969,0.74,970,0.2,971,0.06,,,1 +266,0,0,0,306040,18,306024,12,306025,18,972,0.46,973,0.35,974,0.11,975,0.08,1 +267,0,600,0,301000,12,306023,8,306024,12,976,0.48,977,0.38,978,0.09,979,0.05,2 +268,0,0,0,306040,8,306044,4,306000,4,980,0.56,981,0.32,982,0.12,,,1 +269,0,0,0,306040,18,306044,12,306002,18,983,0.7,984,0.16,985,0.09,986,0.05,1 +270,0,600,0,301000,12,306000,8,306002,12,987,0.61,988,0.26,989,0.08,990,0.05,2 +271,0,0,0,306040,18,306013,12,306014,12,991,0.62,992,0.24,993,0.14,,,1 +272,0,0,0,306043,30,306013,24,306014,30,994,0.41,995,0.36,996,0.15,997,0.08,1 +273,0,900,0,301000,24,306012,18,306013,24,998,0.56,999,0.33,1000,0.07,1001,0.04,2 +274,0,0,0,306053,36,306054,24,306045,24,1002,0.64,1003,0.19,1004,0.17,,,1 +275,10,0,40800,306055,50,306045,44,306047,20,1005,0.59,1006,0.25,1007,0.1,1008,0.06,1 +276,0,1800,0,301000,50,306045,36,306047,50,1009,0.51,1010,0.35,1011,0.1,1012,0.04,2 +277,0,0,0,306040,15,306041,9,306026,9,1013,0.74,1014,0.2,1015,0.06,,,1 +278,0,0,0,306041,24,306026,18,306028,24,1016,0.46,1017,0.35,1018,0.11,1019,0.08,1 +279,0,900,0,301000,21,306026,15,306027,21,1020,0.48,1021,0.38,1022,0.09,1023,0.05,2 +280,0,0,0,306040,15,306003,9,306005,9,1024,0.56,1025,0.32,1026,0.12,,,1 +281,0,0,0,306040,24,306003,18,306004,24,1027,0.7,1028,0.16,1029,0.09,1030,0.05,1 +282,0,900,0,301000,21,306004,15,306005,21,1031,0.61,1032,0.26,1033,0.08,1034,0.05,2 +283,0,0,0,306015,36,306016,24,306045,24,1035,0.62,1036,0.24,1037,0.14,,,1 +284,10,0,44880,306017,50,306045,49,306048,25,1038,0.41,1039,0.36,1040,0.15,1041,0.08,1 +285,0,1800,0,301000,50,306045,36,306048,50,1042,0.56,1043,0.33,1044,0.07,1045,0.04,2 +286,0,0,0,306053,36,306054,24,306047,24,1046,0.64,1047,0.19,1048,0.17,,,1 +287,0,0,0,306054,50,306055,36,306045,50,1049,0.59,1050,0.25,1051,0.1,1052,0.06,1 +288,0,2700,0,301000,50,306055,36,306045,50,1053,0.51,1054,0.35,1055,0.1,1056,0.04,2 +289,0,0,0,306040,36,306041,24,306026,24,1057,0.74,1058,0.2,1059,0.06,,,1 +290,0,0,0,306040,50,306027,36,306028,50,1060,0.46,1061,0.35,1062,0.11,1063,0.08,1 +291,0,1800,0,301000,50,306026,36,306027,50,1064,0.48,1065,0.38,1066,0.09,1067,0.05,2 +292,0,0,0,306040,36,306003,24,306004,24,1068,0.56,1069,0.32,1070,0.12,,,1 +293,0,0,0,306040,50,306003,36,306004,50,1071,0.7,1072,0.16,1073,0.09,1074,0.05,1 +294,0,1800,0,301000,50,306004,36,306005,50,1075,0.61,1076,0.26,1077,0.08,1078,0.05,2 +295,0,0,0,306015,36,306016,24,306045,24,1079,0.62,1080,0.24,1081,0.14,,,1 +296,0,0,0,306015,50,306045,36,306048,50,1082,0.41,1083,0.36,1084,0.15,1085,0.08,1 +297,0,2700,0,301000,50,306045,36,306048,50,1086,0.56,1087,0.33,1088,0.07,1089,0.04,2 +298,0,0,0,306053,36,306054,24,306047,24,1090,0.64,1091,0.19,1092,0.17,,,1 +299,0,0,0,306054,50,306055,36,306045,50,1093,0.59,1094,0.25,1095,0.1,1096,0.06,1 +300,0,3600,0,301000,50,306054,36,306047,50,1097,0.51,1098,0.35,1099,0.1,1100,0.04,2 +301,0,0,0,306029,36,306030,24,306031,24,1101,0.74,1102,0.2,1103,0.06,,,1 +302,0,0,0,306029,50,306030,36,306045,50,1104,0.46,1105,0.35,1106,0.11,1107,0.08,1 +303,0,2700,0,301000,50,306045,36,306046,50,1108,0.48,1109,0.38,1110,0.09,1111,0.05,2 +304,0,0,0,306006,36,306007,24,306045,24,1112,0.56,1113,0.32,1114,0.12,,,1 +305,0,0,0,306006,50,306008,36,306049,50,1115,0.7,1116,0.16,1117,0.09,1118,0.05,1 +306,0,2700,0,301000,50,306045,36,306049,50,1119,0.61,1120,0.26,1121,0.08,1122,0.05,2 +307,0,0,0,306015,36,306016,24,306045,24,1123,0.62,1124,0.24,1125,0.14,,,1 +308,0,0,0,306015,50,306017,36,306045,50,1126,0.41,1127,0.36,1128,0.15,1129,0.08,1 +309,0,3600,0,301000,50,306045,36,306048,50,1130,0.56,1131,0.33,1132,0.07,1133,0.04,2 +310,0,0,0,306053,36,306054,24,306055,24,1134,0.64,1135,0.19,1136,0.17,,,1 +311,0,0,0,306053,50,306054,36,306055,50,1137,0.59,1138,0.25,1139,0.1,1140,0.06,1 +312,0,5400,0,301000,50,306055,36,306047,50,1141,0.51,1142,0.35,1143,0.1,1144,0.04,2 +313,0,0,0,306040,1,306041,1,306023,1,1145,0.74,1146,0.2,1147,0.06,,,1 +314,0,0,0,306041,8,306024,4,306025,8,1148,0.46,1149,0.35,1150,0.11,1151,0.08,1 +315,0,300,1800,306058,12,306067,9,306069,6,1152,0.48,1153,0.38,1154,0.09,1155,0.05,2 +316,0,0,0,306040,1,306044,1,306000,1,1156,0.56,1157,0.32,1158,0.12,,,1 +317,0,0,0,306040,8,306000,4,306001,8,1159,0.7,1160,0.16,1161,0.09,1162,0.05,1 +318,0,300,1800,301000,15,306000,9,306002,6,1163,0.61,1164,0.26,1165,0.08,1166,0.05,2 +319,0,0,0,306040,12,306009,6,306010,6,1167,0.62,1168,0.24,1169,0.14,,,1 +320,0,0,0,306040,21,306009,15,306010,21,1170,0.41,1171,0.36,1172,0.15,1173,0.08,1 +321,0,300,1800,301000,30,306010,10,306011,6,1174,0.56,1175,0.33,1176,0.07,1177,0.04,2 +322,0,0,0,306040,18,306042,12,306051,12,1178,0.64,1179,0.19,1180,0.17,,,1 +323,0,0,0,306040,30,306050,24,306051,30,1181,0.59,1182,0.25,1183,0.1,1184,0.06,1 +324,0,300,0,301000,24,306050,18,306051,24,1185,0.51,1186,0.35,1187,0.1,1188,0.04,2 +325,0,0,0,306040,8,306041,4,306024,4,1189,0.74,1190,0.2,1191,0.06,,,1 +326,0,0,0,306040,18,306023,12,306025,18,1192,0.46,1193,0.35,1194,0.11,1195,0.08,1 +327,0,600,0,301000,12,306041,8,306025,12,1196,0.48,1197,0.38,1198,0.09,1199,0.05,2 +328,0,0,0,306044,8,306000,4,306001,4,1200,0.56,1201,0.32,1202,0.12,,,1 +329,0,0,0,306044,18,306000,12,306002,18,1203,0.7,1204,0.16,1205,0.09,1206,0.05,1 +330,0,600,0,301000,12,306000,8,306002,12,1207,0.61,1208,0.26,1209,0.08,1210,0.05,2 +331,0,0,0,306040,18,306043,12,306013,12,1211,0.62,1212,0.24,1213,0.14,,,1 +332,0,0,0,306043,30,306012,24,306013,30,1214,0.41,1215,0.36,1216,0.15,1217,0.08,1 +333,0,900,0,301000,24,306013,18,306014,24,1218,0.56,1219,0.33,1220,0.07,1221,0.04,2 +334,0,0,0,306053,36,306054,24,306045,24,1222,0.64,1223,0.19,1224,0.17,,,1 +335,10,0,40800,306055,50,306045,44,306047,20,1225,0.59,1226,0.25,1227,0.1,1228,0.06,1 +336,0,1800,0,301000,50,306045,36,306047,50,1229,0.51,1230,0.35,1231,0.1,1232,0.04,2 +337,0,0,0,306041,15,306026,9,306027,9,1233,0.74,1234,0.2,1235,0.06,,,1 +338,0,0,0,306040,24,306041,18,306027,24,1236,0.46,1237,0.35,1238,0.11,1239,0.08,1 +339,0,900,0,301000,21,306027,15,306028,21,1240,0.48,1241,0.38,1242,0.09,1243,0.05,2 +340,0,0,0,306040,15,306044,9,306003,9,1244,0.56,1245,0.32,1246,0.12,,,1 +341,0,0,0,306044,24,306003,18,306004,24,1247,0.7,1248,0.16,1249,0.09,1250,0.05,1 +342,0,900,0,301000,21,306003,15,306005,21,1251,0.61,1252,0.26,1253,0.08,1254,0.05,2 +343,0,0,0,306015,36,306016,24,306045,24,1255,0.62,1256,0.24,1257,0.14,,,1 +344,0,0,0,306017,50,306045,36,306048,50,1258,0.41,1259,0.36,1260,0.15,1261,0.08,1 +345,0,1800,0,301000,50,306017,36,306048,50,1262,0.56,1263,0.33,1264,0.07,1265,0.04,2 +346,0,0,0,306053,36,306054,24,306055,24,1266,0.64,1267,0.19,1268,0.17,,,1 +347,0,0,0,306053,50,306054,36,306055,50,1269,0.59,1270,0.25,1271,0.1,1272,0.06,1 +348,0,2700,0,301000,50,306055,36,306045,50,1273,0.51,1274,0.35,1275,0.1,1276,0.04,2 +349,0,0,0,306040,36,306027,24,306028,24,1277,0.74,1278,0.2,1279,0.06,,,1 +350,0,0,0,306041,50,306026,36,306027,50,1280,0.46,1281,0.35,1282,0.11,1283,0.08,1 +351,0,1800,0,301000,50,306027,36,306028,50,1284,0.48,1285,0.38,1286,0.09,1287,0.05,2 +352,0,0,0,306040,36,306044,24,306003,24,1288,0.56,1289,0.32,1290,0.12,,,1 +353,0,0,0,306040,50,306004,36,306005,50,1291,0.7,1292,0.16,1293,0.09,1294,0.05,1 +354,0,1800,0,301000,50,306003,36,306004,50,1295,0.61,1296,0.26,1297,0.08,1298,0.05,2 +355,0,0,0,306015,36,306016,24,306017,24,1299,0.62,1300,0.24,1301,0.14,,,1 +356,0,0,0,306016,50,306045,36,306048,50,1302,0.41,1303,0.36,1304,0.15,1305,0.08,1 +357,0,2700,0,301000,50,306017,36,306045,50,1306,0.56,1307,0.33,1308,0.07,1309,0.04,2 +358,0,0,0,306053,36,306045,24,306047,24,1310,0.64,1311,0.19,1312,0.17,,,1 +359,0,0,0,306053,50,306054,36,306045,50,1313,0.59,1314,0.25,1315,0.1,1316,0.06,1 +360,0,3600,0,301000,50,306055,36,306045,50,1317,0.51,1318,0.35,1319,0.1,1320,0.04,2 +361,0,0,0,306029,36,306045,24,306046,24,1321,0.74,1322,0.2,1323,0.06,,,1 +362,0,0,0,306029,50,306031,36,306045,50,1324,0.46,1325,0.35,1326,0.11,1327,0.08,1 +363,0,2700,0,301000,50,306045,36,306046,50,1328,0.48,1329,0.38,1330,0.09,1331,0.05,2 +364,0,0,0,306008,36,306045,24,306049,24,1332,0.56,1333,0.32,1334,0.12,,,1 +365,0,0,0,306007,50,306008,36,306045,50,1335,0.7,1336,0.16,1337,0.09,1338,0.05,1 +366,0,2700,0,301000,50,306008,36,306045,50,1339,0.61,1340,0.26,1341,0.08,1342,0.05,2 +367,0,0,0,306015,36,306016,24,306048,24,1343,0.62,1344,0.24,1345,0.14,,,1 +368,0,0,0,306016,50,306045,36,306048,50,1346,0.41,1347,0.36,1348,0.15,1349,0.08,1 +369,0,3600,0,301000,50,306017,36,306048,50,1350,0.56,1351,0.33,1352,0.07,1353,0.04,2 +370,0,0,0,306053,36,306054,24,306047,24,1354,0.64,1355,0.19,1356,0.17,,,1 +371,0,0,0,306054,50,306045,36,306047,50,1357,0.59,1358,0.25,1359,0.1,1360,0.06,1 +372,0,5400,0,301000,50,306055,36,306045,50,1361,0.51,1362,0.35,1363,0.1,1364,0.04,2"; + + public const string V2 = + @"ID,required_action_point,required_gold,required_block_index,material_id,material_count,material_2_id,material_2_count,material_3_id,material_3_count,option_id,option_ratio,option_1_required_block_index,option_2_id,option_2_ratio,option_2_required_block_index,option_3_id,option_3_ratio,option_3_required_block_index,option_4_id,option_4_ratio,option_4_required_block_index,is_mimisbrunnr_sub_recipe,reward_hammer_point +373,0,0,0,,,,,,,1365,10000,0,1366,2800,0,1367,1200,1,,,,FALSE,1 +374,0,0,2,306023,2,306025,2,306002,1,1368,10000,0,1369,8400,1,1370,3200,2,1371,1500,3,FALSE,2 +375,0,450,0,301000,10,,,,,1372,10000,0,1373,8000,0,1374,6000,1,1375,900,1,TRUE,2 +1,0,0,0,306025,1,306023,1,306024,1,1,10000,0,2,3000,0,3,1100,1,,,,FALSE,1 +2,0,0,2,306023,3,306025,2,306024,2,4,10000,0,5,6000,1,6,4200,2,7,1600,3,FALSE,2 +3,0,450,7995,306056,18,306061,20,306068,14,8,10000,0,9,8000,800,10,6000,1600,11,900,2400,TRUE,2 +4,0,0,0,306000,1,306002,1,306001,1,12,10000,0,13,2800,0,14,1200,1,,,,FALSE,1 +5,0,0,2,306002,3,306000,2,306001,2,15,10000,0,16,9000,1,17,2800,2,18,1600,3,FALSE,2 +6,0,450,0,301000,10,,,,,19,10000,0,20,8000,0,21,6000,1,22,900,1,TRUE,2 +7,0,0,0,306011,6,306010,3,306009,3,23,10000,0,24,3400,15,25,1000,46,,,,FALSE,1 +8,0,0,77,306010,16,306009,11,306011,11,26,10000,0,27,7900,34,28,3400,69,29,1500,104,FALSE,2 +9,0,450,0,301000,10,,,,,30,10000,0,31,8000,15,32,6000,31,33,900,46,TRUE,2 +10,0,0,0,306050,12,306052,6,306040,6,34,10000,0,35,3000,47,36,1100,143,,,,FALSE,1 +11,0,0,238,306050,36,306051,24,306042,6,37,10000,0,38,6000,107,39,4200,214,40,1600,321,FALSE,2 +12,0,450,0,301000,10,,,,,41,10000,0,42,8000,47,43,6000,95,44,900,143,TRUE,2 +376,0,0,0,,,,,,,1376,10000,0,1377,2800,3,1378,1200,11,,,,FALSE,1 +377,0,0,18,306023,5,306002,4,306024,3,1379,10000,0,1380,8400,8,1381,3200,16,1382,1500,24,FALSE,2 +378,0,450,0,301000,10,,,,,1383,10000,0,1384,8000,3,1385,6000,7,1386,900,11,TRUE,2 +13,0,0,0,306023,3,306025,2,306024,2,45,10000,0,46,3000,4,47,1100,13,,,,FALSE,1 +14,0,0,22,306025,8,306024,5,306023,5,48,10000,0,49,6000,10,50,4200,20,51,1600,30,FALSE,2 +15,0,450,0,301000,10,,,,,52,10000,0,53,8000,4,54,6000,9,55,900,13,TRUE,2 +16,0,0,0,306001,4,306000,2,306002,2,56,10000,0,57,2800,8,58,1200,26,,,,FALSE,1 +17,0,0,44,306001,11,306000,7,306002,7,59,10000,0,60,9000,19,61,2800,39,62,1600,59,FALSE,2 +18,0,450,0,301000,10,,,,,63,10000,0,64,8000,8,65,6000,17,66,900,26,TRUE,2 +19,0,0,0,306013,15,306014,8,306040,8,67,10000,0,68,3400,116,69,1000,350,,,,FALSE,1 +20,0,0,583,306014,43,306013,29,306043,8,70,10000,0,71,7900,262,72,3400,525,73,1500,787,FALSE,2 +21,0,450,0,301000,10,,,,,74,10000,0,75,8000,116,76,6000,233,77,900,350,TRUE,2 +22,0,0,0,306055,24,306054,12,306035,12,78,10000,0,79,3000,715,80,1100,2146,,,,FALSE,1 +23,0,0,3577,306053,72,306054,48,306037,12,81,10000,0,82,6000,1609,83,4200,3219,84,1600,4829,FALSE,2 +24,0,450,0,301000,10,,,,,85,10000,0,86,8000,715,87,6000,1431,88,900,2146,TRUE,2 +379,0,0,0,306040,4,,,,,1387,10000,0,1388,2800,24,1389,1200,72,,,,FALSE,1 +380,0,0,120,306003,14,306040,7,306044,4,1390,10000,0,1391,8400,54,1392,3200,108,1393,1500,162,FALSE,2 +381,0,450,0,301000,10,,,,,1394,10000,0,1395,8000,24,1396,6000,48,1397,900,72,TRUE,2 +25,0,0,0,306027,8,306028,4,306040,4,89,10000,0,90,3000,25,91,1100,77,,,,FALSE,1 +26,0,0,128,306026,22,306028,15,306041,4,92,10000,0,93,6000,57,94,4200,115,95,1600,173,FALSE,2 +27,0,450,0,301000,10,,,,,96,10000,0,97,8000,25,98,6000,51,99,900,77,TRUE,2 +28,0,0,0,306004,9,306003,5,306040,5,100,10000,0,101,2800,32,102,1200,98,,,,FALSE,1 +29,0,0,164,306005,27,306004,18,306044,5,103,10000,0,104,9000,73,105,2800,147,106,1600,221,FALSE,2 +30,0,450,0,301000,10,,,,,107,10000,0,108,8000,32,109,6000,65,110,900,98,TRUE,2 +31,0,0,0,306015,27,306016,14,306035,14,111,10000,0,112,3400,980,113,1000,2942,,,,FALSE,1 +32,0,0,4903,306017,80,306016,54,306038,14,114,10000,0,115,7900,2206,116,3400,4413,117,1500,6619,FALSE,2 +33,0,450,0,301000,10,,,,,118,10000,0,119,8000,980,120,6000,1961,121,900,2942,TRUE,2 +34,0,0,0,306055,47,306054,24,306045,24,122,10000,0,123,3000,2158,124,1100,6475,,,,FALSE,1 +35,0,0,10792,306055,93,306045,47,306047,24,125,10000,0,126,6000,4856,127,4200,9713,128,1600,14569,FALSE,2 +36,0,450,0,301000,10,,,,,129,10000,0,130,8000,2158,131,6000,4317,132,900,6475,TRUE,2 +382,0,0,0,306035,9,,,,,1398,10000,0,1399,2800,148,1400,1200,444,,,,FALSE,1 +383,0,0,741,306053,51,306006,34,306039,9,1401,10000,0,1402,8400,333,1403,3200,666,1404,1500,1000,FALSE,2 +384,0,450,0,301000,10,,,,,1405,10000,0,1406,8000,148,1407,6000,296,1408,900,444,TRUE,2 +37,0,0,0,306029,19,306030,10,306035,10,133,10000,0,134,3000,164,135,1100,492,,,,FALSE,1 +38,0,0,821,306029,37,306035,19,306036,10,136,10000,0,137,6000,369,138,4200,739,139,1600,1108,FALSE,2 +39,0,450,0,301000,10,,,,,140,10000,0,141,8000,164,142,6000,328,143,900,492,TRUE,2 +40,0,0,0,306006,21,306008,11,306035,11,144,10000,0,145,2800,519,146,1200,1557,,,,FALSE,1 +41,0,0,2595,306006,41,306035,21,306039,11,147,10000,0,148,9000,1167,149,2800,2335,150,1600,3503,FALSE,2 +42,0,450,0,301000,10,,,,,151,10000,0,152,8000,519,153,6000,1038,154,900,1557,TRUE,2 +43,0,0,0,306015,61,306016,31,306045,31,155,10000,0,156,3400,2805,157,1000,8415,,,,FALSE,1 +44,0,0,14025,306015,121,306045,61,306048,31,158,10000,0,159,7900,6311,160,3400,12622,161,1500,18933,FALSE,2 +45,0,450,0,301000,10,,,,,162,10000,0,163,8000,2805,164,6000,5610,165,900,8415,TRUE,2 +46,0,0,0,306055,365,306053,185,306045,37,166,10000,0,167,3000,3430,168,1100,10290,,,,FALSE,1 +47,0,0,17151,306054,730,306045,73,306047,37,169,10000,0,170,6000,7717,171,4200,15435,172,1600,23153,FALSE,2 +48,0,450,0,301000,10,,,,,173,10000,0,174,8000,3430,175,6000,6860,176,900,10290,TRUE,2 +388,0,0,0,306045,43,,,,,1420,10000,0,1421,2800,6037,1422,1200,18112,,,,FALSE,1 +389,0,0,30187,306029,169,306045,85,306046,43,1423,10000,0,1424,8400,13584,1425,3200,27168,1426,1500,40752,FALSE,2 +390,0,450,0,301000,10,,,,,1427,10000,0,1428,8000,6037,1429,6000,12075,1430,900,18112,TRUE,2 +61,0,0,0,306030,85,306029,43,306045,43,221,10000,0,222,3000,6211,223,1100,18634,,,,FALSE,1 +62,0,0,31057,306029,170,306045,85,306046,43,224,10000,0,225,6000,13975,226,4200,27951,227,1600,41927,FALSE,2 +63,0,450,0,301000,10,,,,,228,10000,0,229,8000,6211,230,6000,12423,231,900,18634,TRUE,2 +64,0,0,0,306030,86,306029,43,306045,43,232,10000,0,233,2800,6391,234,1200,19174,,,,FALSE,1 +65,0,0,31957,306029,171,306045,86,306046,43,235,10000,0,236,9000,14380,237,2800,28761,238,1600,43142,FALSE,2 +66,0,450,0,301000,10,,,,,239,10000,0,240,8000,6391,241,6000,12783,242,900,19174,TRUE,2 +67,0,0,0,306030,86,306029,43,306045,43,243,10000,0,244,3400,6577,245,1000,19732,,,,FALSE,1 +68,0,0,32887,306029,172,306045,86,306046,43,246,10000,0,247,7900,14799,248,3400,29598,249,1500,44397,FALSE,2 +69,0,450,0,301000,10,,,,,250,10000,0,251,8000,6577,252,6000,13155,253,900,19732,TRUE,2 +70,0,0,0,306030,87,306029,44,306045,44,254,10000,0,255,3000,6769,256,1100,20308,,,,FALSE,1 +71,0,0,33847,306029,173,306045,87,306046,44,257,10000,0,258,6000,15231,259,4200,30462,260,1600,45693,FALSE,2 +72,0,450,0,301000,10,,,,,261,10000,0,262,8000,6769,263,6000,13539,264,900,20308,TRUE,2 +394,0,0,0,306045,59,,,,,1442,10000,0,1443,2800,15697,1444,1200,47092,,,,FALSE,1 +395,0,0,78487,306029,233,306045,117,306046,59,1445,10000,0,1446,8400,35319,1447,3200,70638,1448,1500,105957,FALSE,2 +396,0,450,0,301000,10,,,,,1449,10000,0,1450,8000,15697,1451,6000,31395,1452,900,47092,TRUE,2 +85,0,0,0,306030,118,306029,59,306045,59,309,10000,0,310,3000,16081,311,1100,48244,,,,FALSE,1 +86,0,0,80407,306029,236,306045,118,306046,59,312,10000,0,313,6000,36183,314,4200,72366,315,1600,108549,FALSE,2 +87,0,450,0,301000,10,,,,,316,10000,0,317,8000,16081,318,6000,32163,319,900,48244,TRUE,2 +88,0,0,0,306030,119,306029,60,306045,60,320,10000,0,321,2800,16471,322,1200,49414,,,,FALSE,1 +89,0,0,82357,306029,238,306045,119,306046,60,323,10000,0,324,9000,37060,325,2800,74121,326,1600,111182,FALSE,2 +90,0,450,0,301000,10,,,,,327,10000,0,328,8000,16471,329,6000,32943,330,900,49414,TRUE,2 +91,0,0,0,306030,121,306029,61,306045,61,331,10000,0,332,3400,16867,333,1000,50602,,,,FALSE,1 +92,0,0,84337,306029,241,306045,121,306046,61,334,10000,0,335,7900,37951,336,3400,75903,337,1500,113855,FALSE,2 +93,0,450,0,301000,10,,,,,338,10000,0,339,8000,16867,340,6000,33735,341,900,50602,TRUE,2 +94,0,0,0,306030,122,306029,61,306045,61,342,10000,0,343,3000,17269,344,1100,51808,,,,FALSE,1 +95,0,0,86347,306029,243,306045,122,306046,61,345,10000,0,346,6000,38856,347,4200,77712,348,1600,116568,FALSE,2 +96,0,450,0,301000,10,,,,,349,10000,0,350,8000,17269,351,6000,34539,352,900,51808,TRUE,2 +397,0,0,0,306045,63,,,,,1453,10000,0,1454,2800,18091,1455,1200,54274,,,,FALSE,1 +398,0,0,90457,306029,249,306045,125,306046,63,1456,10000,0,1457,8400,40705,1458,3200,81411,1459,1500,122117,FALSE,2 +399,0,450,0,301000,10,,,,,1460,10000,0,1461,8000,18091,1462,6000,36183,1463,900,54274,TRUE,2 +400,0,0,0,,,,,,,1464,10000,0,1465,4800,0,1466,700,1,,,,FALSE,1 +401,0,0,2,306024,2,306002,2,306001,1,1467,10000,0,1468,9400,1,1469,5300,2,1470,800,3,FALSE,2 +402,0,300,0,301000,10,,,,,1471,10000,0,1472,8000,0,1473,6000,1,1474,900,1,TRUE,2 +97,0,0,0,306023,1,306024,1,306025,1,353,10000,0,354,4200,0,355,800,1,,,,FALSE,1 +98,0,0,2,306024,3,306025,2,306023,2,356,10000,0,357,7400,1,358,6000,2,359,900,3,FALSE,2 +99,0,300,4995,306056,15,306060,20,306066,20,360,10000,0,361,8000,500,362,6000,1000,363,900,1500,TRUE,2 +100,0,0,0,306002,2,306001,1,306000,1,364,10000,0,365,5600,2,366,600,6,,,,FALSE,1 +101,0,0,11,306002,6,306000,4,306001,4,367,10000,0,368,7900,5,369,6300,10,370,800,15,FALSE,2 +102,0,300,0,301000,10,,,,,371,10000,0,372,8000,2,373,6000,4,374,900,6,TRUE,2 +103,0,0,0,306011,7,306009,4,306010,4,375,10000,0,376,5600,21,377,600,63,,,,FALSE,1 +104,0,0,105,306011,19,306010,13,306009,13,378,10000,0,379,9000,47,380,5600,94,381,800,141,FALSE,2 +105,0,300,0,301000,10,,,,,382,10000,0,383,8000,21,384,6000,42,385,900,63,TRUE,2 +106,0,0,0,306051,14,306052,7,306040,7,386,10000,0,387,4800,107,388,700,322,,,,FALSE,1 +107,0,0,538,306052,40,306050,27,306042,7,389,10000,0,390,7400,242,391,6000,484,392,900,726,FALSE,2 +108,0,300,0,301000,10,,,,,393,10000,0,394,8000,107,395,6000,215,396,900,322,TRUE,2 +403,0,0,0,,,,,,,1475,10000,0,1476,4800,7,1477,700,21,,,,FALSE,1 +404,0,0,35,306023,7,306000,5,306001,4,1478,10000,0,1479,9400,15,1480,5300,31,1481,800,47,FALSE,2 +405,0,300,0,301000,10,,,,,1482,10000,0,1483,8000,7,1484,6000,14,1485,900,21,TRUE,2 +109,0,0,0,306025,4,306023,2,306024,2,397,10000,0,398,4200,7,399,800,23,,,,FALSE,1 +110,0,0,39,306025,10,306023,7,306024,7,400,10000,0,401,7400,17,402,6000,35,403,900,53,FALSE,2 +111,0,300,0,301000,10,,,,,404,10000,0,405,8000,7,406,6000,15,407,900,23,TRUE,2 +112,0,0,0,306000,5,306002,3,306001,3,408,10000,0,409,5600,12,410,600,36,,,,FALSE,1 +113,0,0,60,306002,13,306000,9,306001,9,411,10000,0,412,7900,27,413,6300,54,414,800,81,FALSE,2 +114,0,300,0,301000,10,,,,,415,10000,0,416,8000,12,417,6000,24,418,900,36,TRUE,2 +115,0,0,0,306013,16,306014,8,306040,8,419,10000,0,420,5600,134,421,600,402,,,,FALSE,1 +116,0,0,670,306014,32,306040,16,306043,8,422,10000,0,423,9000,301,424,5600,603,425,800,904,FALSE,2 +117,0,300,0,301000,10,,,,,426,10000,0,427,8000,134,428,6000,268,429,900,402,TRUE,2 +118,0,0,0,306053,26,306055,13,306035,13,430,10000,0,431,4800,836,432,700,2508,,,,FALSE,1 +119,0,0,4180,306054,51,306035,26,306037,13,433,10000,0,434,7400,1881,435,6000,3762,436,900,5643,FALSE,2 +120,0,300,0,301000,10,,,,,437,10000,0,438,8000,836,439,6000,1672,440,900,2508,TRUE,2 +406,0,0,0,306040,5,,,,,1486,10000,0,1487,4800,31,1488,700,93,,,,FALSE,1 +407,0,0,155,306005,26,306026,17,306043,5,1489,10000,0,1490,9400,69,1491,5300,139,1492,800,209,FALSE,2 +408,0,300,0,301000,10,,,,,1493,10000,0,1494,8000,31,1495,6000,62,1496,900,93,TRUE,2 +121,0,0,0,306027,10,306028,5,306040,5,441,10000,0,442,4200,34,443,800,104,,,,FALSE,1 +122,0,0,174,306026,19,306040,10,306041,5,444,10000,0,445,7400,78,446,6000,156,447,900,234,FALSE,2 +123,0,300,0,301000,10,,,,,448,10000,0,449,8000,34,450,6000,69,451,900,104,TRUE,2 +124,0,0,0,306003,11,306004,6,306040,6,452,10000,0,453,5600,43,454,600,129,,,,FALSE,1 +125,0,0,216,306004,22,306040,11,306044,6,455,10000,0,456,7900,97,457,6300,194,458,800,291,FALSE,2 +126,0,300,0,301000,10,,,,,459,10000,0,460,8000,43,461,6000,86,462,900,129,TRUE,2 +127,0,0,0,306016,40,306017,20,306045,20,463,10000,0,464,5600,1842,465,600,5527,,,,FALSE,1 +128,0,0,9213,306016,80,306045,40,306048,20,466,10000,0,467,9000,4145,468,5600,8291,469,800,12437,FALSE,2 +129,0,300,0,301000,10,,,,,470,10000,0,471,8000,1842,472,6000,3685,473,900,5527,TRUE,2 +130,0,0,0,306054,52,306055,26,306045,26,474,10000,0,475,4800,2399,476,700,7197,,,,FALSE,1 +131,0,0,11995,306053,154,306054,103,306047,26,477,10000,0,478,7400,5397,479,6000,10795,480,900,16193,FALSE,2 +132,0,300,0,301000,10,,,,,481,10000,0,482,8000,2399,483,6000,4798,484,900,7197,TRUE,2 +409,0,0,0,306035,10,,,,,1497,10000,0,1498,4800,182,1499,700,547,,,,FALSE,1 +410,0,0,912,306030,58,306053,39,306036,10,1500,10000,0,1501,9400,410,1502,5300,820,1503,800,1231,FALSE,2 +411,0,300,0,301000,10,,,,,1504,10000,0,1505,8000,182,1506,6000,364,1507,900,547,TRUE,2 +133,0,0,0,306031,22,306030,11,306035,11,485,10000,0,486,4200,546,487,800,1638,,,,FALSE,1 +134,0,0,2731,306029,64,306030,43,306036,11,488,10000,0,489,7400,1229,490,6000,2458,491,900,3687,FALSE,2 +135,0,300,0,301000,10,,,,,492,10000,0,493,8000,546,494,6000,1092,495,900,1638,TRUE,2 +136,0,0,0,306008,23,306006,12,306035,12,496,10000,0,497,5600,618,498,600,1856,,,,FALSE,1 +137,0,0,3094,306007,45,306035,23,306039,12,499,10000,0,500,7900,1392,501,6300,2784,502,800,4177,FALSE,2 +138,0,300,0,301000,10,,,,,503,10000,0,504,8000,618,505,6000,1237,506,900,1856,TRUE,2 +139,0,0,0,306015,335,306016,170,306045,34,507,10000,0,508,5600,3105,509,600,9316,,,,FALSE,1 +140,0,0,15528,306017,1000,306016,133,306048,34,510,10000,0,511,9000,6987,512,5600,13975,513,800,20962,FALSE,2 +141,0,300,0,301000,10,,,,,514,10000,0,515,8000,3105,516,6000,6211,517,900,9316,TRUE,2 +142,0,0,0,306055,760,306054,380,306045,57,518,10000,0,519,4800,3619,520,700,10858,,,,FALSE,1 +143,0,0,18097,306053,1368,306055,152,306047,38,521,10000,0,522,7400,8143,523,6000,16287,524,900,24431,FALSE,2 +144,0,300,0,301000,10,,,,,525,10000,0,526,8000,3619,527,6000,7239,528,900,10858,TRUE,2 +415,0,0,0,306035,41,,,,,1519,10000,0,1520,4800,5257,1521,700,15772,,,,FALSE,1 +416,0,0,26287,306029,163,306035,82,306036,41,1522,10000,0,1523,9400,11829,1524,5300,23658,1525,800,35487,FALSE,2 +417,0,300,0,301000,10,,,,,1526,10000,0,1527,8000,5257,1528,6000,10515,1529,900,15772,TRUE,2 +157,0,0,0,306030,82,306029,41,306035,41,573,10000,0,574,4200,5401,575,800,16204,,,,FALSE,1 +158,0,0,27007,306029,164,306035,82,306036,41,576,10000,0,577,7400,12153,578,6000,24306,579,900,36459,FALSE,2 +159,0,300,0,301000,10,,,,,580,10000,0,581,8000,5401,582,6000,10803,583,900,16204,TRUE,2 +160,0,0,0,306030,83,306029,42,306035,42,584,10000,0,585,5600,5551,586,600,16654,,,,FALSE,1 +161,0,0,27757,306029,165,306035,83,306036,42,587,10000,0,588,7900,12490,589,6300,24981,590,800,37472,FALSE,2 +162,0,300,0,301000,10,,,,,591,10000,0,592,8000,5551,593,6000,11103,594,900,16654,TRUE,2 +163,0,0,0,306030,83,306029,42,306035,42,595,10000,0,596,5600,5707,597,600,17122,,,,FALSE,1 +164,0,0,28537,306029,166,306035,83,306036,42,598,10000,0,599,9000,12841,600,5600,25683,601,800,38525,FALSE,2 +165,0,300,0,301000,10,,,,,602,10000,0,603,8000,5707,604,6000,11415,605,900,17122,TRUE,2 +166,0,0,0,306030,84,306029,42,306035,42,606,10000,0,607,4800,5869,608,700,17608,,,,FALSE,1 +167,0,0,29347,306029,167,306035,84,306036,42,609,10000,0,610,7400,13206,611,6000,26412,612,900,39618,FALSE,2 +168,0,300,0,301000,10,,,,,613,10000,0,614,8000,5869,615,6000,11739,616,900,17608,TRUE,2 +418,0,0,0,306035,44,,,,,1530,10000,0,1531,4800,6967,1532,700,20902,,,,FALSE,1 +419,0,0,34837,306029,175,306035,88,306036,44,1533,10000,0,1534,9400,15676,1535,5300,31353,1536,800,47030,FALSE,2 +420,0,300,0,301000,10,,,,,1537,10000,0,1538,8000,6967,1539,6000,13935,1540,900,20902,TRUE,2 +169,0,0,0,306030,88,306029,44,306035,44,617,10000,0,618,4200,7171,619,800,21514,,,,FALSE,1 +170,0,0,35857,306029,176,306035,88,306036,44,620,10000,0,621,7400,16135,622,6000,32271,623,900,48407,FALSE,2 +171,0,300,0,301000,10,,,,,624,10000,0,625,8000,7171,626,6000,14343,627,900,21514,TRUE,2 +172,0,0,0,306030,89,306029,45,306035,45,628,10000,0,629,5600,7381,630,600,22144,,,,FALSE,1 +173,0,0,36907,306029,178,306035,89,306036,45,631,10000,0,632,7900,16608,633,6300,33216,634,800,49824,FALSE,2 +174,0,300,0,301000,10,,,,,635,10000,0,636,8000,7381,637,6000,14763,638,900,22144,TRUE,2 +175,0,0,0,306030,90,306029,45,306035,45,639,10000,0,640,5600,7597,641,600,22792,,,,FALSE,1 +176,0,0,37987,306029,179,306035,90,306036,45,642,10000,0,643,9000,17094,644,5600,34188,645,800,51282,FALSE,2 +177,0,300,0,301000,10,,,,,646,10000,0,647,8000,7597,648,6000,15195,649,900,22792,TRUE,2 +178,0,0,0,306030,90,306029,45,306045,45,650,10000,0,651,4800,7819,652,700,23458,,,,FALSE,1 +179,0,0,39097,306029,180,306045,90,306046,45,653,10000,0,654,7400,17593,655,6000,35187,656,900,52781,FALSE,2 +180,0,300,0,301000,10,,,,,657,10000,0,658,8000,7819,659,6000,15639,660,900,23458,TRUE,2 +424,0,0,0,306035,62,,,,,1552,10000,0,1553,4800,17677,1554,700,53032,,,,FALSE,1 +425,0,0,88387,306029,246,306035,123,306036,62,1555,10000,0,1556,9400,39774,1557,5300,79548,1558,800,119322,FALSE,2 +426,0,300,0,301000,10,,,,,1559,10000,0,1560,8000,17677,1561,6000,35355,1562,900,53032,TRUE,2 +427,0,0,0,,,,,,,1563,10000,0,1564,4800,0,1565,700,1,,,,FALSE,1 +428,0,0,2,306023,2,306001,2,306000,1,1566,10000,0,1567,8500,1,1568,5900,2,1569,800,3,FALSE,2 +429,0,300,0,301000,10,,,,,1570,10000,0,1571,8000,0,1572,6000,1,1573,900,1,TRUE,2 +193,0,0,0,306025,1,306023,1,306024,1,705,10000,0,706,5600,0,707,600,1,,,,FALSE,1 +194,0,0,2,306025,3,306023,2,306024,2,708,10000,0,709,9500,1,710,6000,2,711,700,3,FALSE,2 +195,0,300,995,306058,20,306064,16,306065,8,712,10000,0,713,8000,100,714,6000,200,715,900,300,TRUE,2 +196,0,0,0,306000,3,306002,2,306001,2,716,10000,0,717,4800,3,718,700,9,,,,FALSE,1 +197,0,0,15,306001,7,306002,5,306000,5,719,10000,0,720,8400,6,721,6000,13,722,800,20,FALSE,2 +198,0,300,0,301000,10,,,,,723,10000,0,724,8000,3,725,6000,6,726,900,9,TRUE,2 +199,0,0,0,306009,8,306011,4,306010,4,727,10000,0,728,5600,27,729,600,82,,,,FALSE,1 +200,0,0,137,306010,23,306009,16,306011,16,730,10000,0,731,7600,61,732,6600,123,733,800,184,FALSE,2 +201,0,300,0,301000,10,,,,,734,10000,0,735,8000,27,736,6000,54,737,900,82,TRUE,2 +202,0,0,0,306052,18,306051,9,306040,9,738,10000,0,739,5600,156,740,600,468,,,,FALSE,1 +203,0,0,780,306051,53,306050,35,306042,9,741,10000,0,742,8800,351,743,5700,702,744,800,1053,FALSE,2 +204,0,300,0,301000,10,,,,,745,10000,0,746,8000,156,747,6000,312,748,900,468,TRUE,2 +430,0,0,0,,,,,,,1574,10000,0,1575,4800,9,1576,700,29,,,,FALSE,1 +431,0,0,49,306024,8,306001,6,306023,4,1577,10000,0,1578,8500,22,1579,5900,44,1580,800,66,FALSE,2 +432,0,300,0,301000,10,,,,,1581,10000,0,1582,8000,9,1583,6000,19,1584,900,29,TRUE,2 +205,0,0,0,306025,4,306023,2,306024,2,749,10000,0,750,5600,10,751,600,32,,,,FALSE,1 +206,0,0,54,306025,12,306024,8,306023,8,752,10000,0,753,9500,24,754,6000,48,755,700,73,FALSE,2 +207,0,300,0,301000,10,,,,,756,10000,0,757,8000,10,758,6000,21,759,900,32,TRUE,2 +208,0,0,0,306001,6,306002,3,306000,3,760,10000,0,761,4800,18,762,700,54,,,,FALSE,1 +209,0,0,90,306002,17,306001,12,306000,12,763,10000,0,764,8400,40,765,6000,81,766,800,121,FALSE,2 +210,0,300,0,301000,10,,,,,767,10000,0,768,8000,18,769,6000,36,770,900,54,TRUE,2 +211,0,0,0,306014,22,306013,11,306040,11,771,10000,0,772,5600,579,773,600,1738,,,,FALSE,1 +212,0,0,2898,306013,66,306014,44,306043,11,774,10000,0,775,7600,1304,776,6600,2608,777,800,3912,FALSE,2 +213,0,300,0,301000,10,,,,,778,10000,0,779,8000,579,780,6000,1159,781,900,1738,TRUE,2 +214,0,0,0,306054,45,306055,23,306045,23,782,10000,0,783,5600,2047,784,600,6141,,,,FALSE,1 +215,0,0,10236,306053,133,306054,89,306047,23,785,10000,0,786,8800,4606,787,5700,9212,788,800,13818,FALSE,2 +216,0,300,0,301000,10,,,,,789,10000,0,790,8000,2047,791,6000,4094,792,900,6141,TRUE,2 +433,0,0,0,306040,5,,,,,1585,10000,0,1586,4800,38,1587,700,116,,,,FALSE,1 +434,0,0,194,306004,20,306040,10,306043,5,1588,10000,0,1589,8500,87,1590,5900,174,1591,800,262,FALSE,2 +435,0,300,0,301000,10,,,,,1592,10000,0,1593,8000,38,1594,6000,77,1595,900,116,TRUE,2 +217,0,0,0,306028,11,306026,6,306040,6,793,10000,0,794,5600,41,795,600,123,,,,FALSE,1 +218,0,0,205,306028,21,306040,11,306041,6,796,10000,0,797,9500,92,798,6000,184,799,700,276,FALSE,2 +219,0,300,0,301000,10,,,,,800,10000,0,801,8000,41,802,6000,82,803,900,123,TRUE,2 +220,0,0,0,306005,14,306003,7,306040,7,804,10000,0,805,4800,111,806,700,335,,,,FALSE,1 +221,0,0,559,306005,42,306004,28,306044,7,807,10000,0,808,8400,251,809,6000,503,810,800,755,FALSE,2 +222,0,300,0,301000,10,,,,,811,10000,0,812,8000,111,813,6000,223,814,900,335,TRUE,2 +223,0,0,0,306015,58,306017,29,306045,29,815,10000,0,816,5600,2663,817,600,7991,,,,FALSE,1 +224,0,0,13318,306015,172,306016,115,306048,29,818,10000,0,819,7600,5993,820,6600,11986,821,800,17979,FALSE,2 +225,0,300,0,301000,10,,,,,822,10000,0,823,8000,2663,824,6000,5327,825,900,7991,TRUE,2 +436,0,0,0,306035,13,,,,,1596,10000,0,1597,4800,905,1598,700,2716,,,,FALSE,1 +437,0,0,4527,306030,78,306007,52,306037,13,1599,10000,0,1600,8500,2037,1601,5900,4074,1602,800,6111,FALSE,2 +438,0,300,0,301000,10,,,,,1603,10000,0,1604,8000,905,1605,6000,1810,1606,900,2716,TRUE,2 +229,0,0,0,306029,28,306031,14,306035,14,837,10000,0,838,5600,1062,839,600,3186,,,,FALSE,1 +230,0,0,5310,306029,82,306031,55,306036,14,840,10000,0,841,9500,2389,842,6000,4779,843,700,7168,FALSE,2 +231,0,300,0,301000,10,,,,,844,10000,0,845,8000,1062,846,6000,2124,847,900,3186,TRUE,2 +232,0,0,0,306007,380,306008,190,306045,38,848,10000,0,849,4800,3601,850,700,10804,,,,FALSE,1 +233,0,0,18007,306007,1140,306006,760,306049,38,851,10000,0,852,8400,8103,853,6000,16206,854,800,24309,FALSE,2 +234,0,300,0,301000,10,,,,,855,10000,0,856,8000,3601,857,6000,7203,858,900,10804,TRUE,2 +235,0,0,0,306016,380,306015,190,306045,38,859,10000,0,860,5600,3601,861,600,10804,,,,FALSE,1 +236,0,0,18007,306015,1140,306017,760,306048,38,862,10000,0,863,7600,8103,864,6600,16206,865,800,24309,FALSE,2 +237,0,300,0,301000,10,,,,,866,10000,0,867,8000,3601,868,6000,7203,869,900,10804,TRUE,2 +238,0,0,0,306053,380,306055,190,306045,38,870,10000,0,871,5600,3601,872,600,10804,,,,FALSE,1 +239,0,0,18007,306053,1140,306054,760,306047,38,873,10000,0,874,8800,8103,875,5700,16206,876,800,24309,FALSE,2 +240,0,300,0,301000,10,,,,,877,10000,0,878,8000,3601,879,6000,7203,880,900,10804,TRUE,2 +442,0,0,0,,,,,,,1618,10000,0,1619,3000,0,1620,1100,1,,,,FALSE,1 +443,0,0,2,306024,2,306002,2,306000,1,1621,10000,0,1622,6300,1,1623,5300,2,1624,1200,3,FALSE,2 +444,0,300,0,301000,10,,,,,1625,10000,0,1626,8000,0,1627,6000,1,1628,900,1,TRUE,2 +253,0,0,0,306025,1,306023,1,306024,1,925,10000,0,926,3700,1,927,900,3,,,,FALSE,1 +254,0,0,5,306025,3,306024,2,306023,2,928,10000,0,929,7500,2,930,4800,4,931,1100,7,FALSE,2 +255,0,300,2995,306062,8,306059,22,306063,10,932,10000,0,933,8000,300,934,6000,601,935,900,901,TRUE,2 +256,0,0,0,306001,3,306000,2,306002,2,936,10000,0,937,3700,5,938,900,15,,,,FALSE,1 +257,0,0,26,306001,8,306000,6,306002,6,939,10000,0,940,8000,11,941,5000,23,942,1000,35,FALSE,2 +258,0,300,0,301000,10,,,,,943,10000,0,944,8000,5,945,6000,10,946,900,15,TRUE,2 +259,0,0,0,306010,10,306009,5,306011,5,947,10000,0,948,3400,36,949,1000,110,,,,FALSE,1 +260,0,0,184,306010,29,306011,20,306009,20,950,10000,0,951,9100,82,952,4000,165,953,1100,248,FALSE,2 +261,0,300,0,301000,10,,,,,954,10000,0,955,8000,36,956,6000,73,957,900,110,TRUE,2 +262,0,0,0,306050,20,306051,10,306040,10,958,10000,0,959,3400,497,960,1000,1493,,,,FALSE,1 +263,0,0,2488,306051,40,306040,20,306042,10,961,10000,0,962,7300,1119,963,4600,2239,964,1200,3359,FALSE,2 +264,0,300,0,301000,10,,,,,965,10000,0,966,8000,497,967,6000,995,968,900,1493,TRUE,2 +445,0,0,0,,,,,,,1629,10000,0,1630,3000,13,1631,1100,39,,,,FALSE,1 +446,0,0,65,306024,9,306023,7,306000,5,1632,10000,0,1633,6300,29,1634,5300,58,1635,1200,88,FALSE,2 +447,0,300,0,301000,10,,,,,1636,10000,0,1637,8000,13,1638,6000,26,1639,900,39,TRUE,2 +265,0,0,0,306024,5,306025,3,306023,3,969,10000,0,970,3700,14,971,900,42,,,,FALSE,1 +266,0,0,71,306025,15,306023,10,306024,10,972,10000,0,973,7500,32,974,4800,64,975,1100,96,FALSE,2 +267,0,300,0,301000,10,,,,,976,10000,0,977,8000,14,978,6000,28,979,900,42,TRUE,2 +268,0,0,0,306000,7,306001,4,306002,4,980,10000,0,981,3700,22,982,900,67,,,,FALSE,1 +269,0,0,112,306001,20,306000,14,306002,14,983,10000,0,984,8000,50,985,5000,101,986,1000,151,FALSE,2 +270,0,300,0,301000,10,,,,,987,10000,0,988,8000,22,989,6000,45,990,900,67,TRUE,2 +271,0,0,0,306012,25,306013,13,306040,13,991,10000,0,992,3400,772,993,1000,2318,,,,FALSE,1 +272,0,0,3864,306014,49,306040,25,306043,13,994,10000,0,995,9100,1738,996,4000,3477,997,1100,5216,FALSE,2 +273,0,300,0,301000,10,,,,,998,10000,0,999,8000,772,1000,6000,1545,1001,900,2318,TRUE,2 +274,0,0,0,306055,43,306053,22,306045,22,1002,10000,0,1003,3400,1941,1004,1000,5825,,,,FALSE,1 +275,0,0,9709,306053,127,306054,85,306047,22,1005,10000,0,1006,7300,4369,1007,4600,8738,1008,1200,13107,FALSE,2 +276,0,300,0,301000,10,,,,,1009,10000,0,1010,8000,1941,1011,6000,3883,1012,900,5825,TRUE,2 +448,0,0,0,306040,7,,,,,1640,10000,0,1641,3000,100,1642,1100,301,,,,FALSE,1 +449,0,0,502,306012,37,306027,25,306041,7,1643,10000,0,1644,6300,226,1645,5300,452,1646,1200,678,FALSE,2 +450,0,300,0,301000,10,,,,,1647,10000,0,1648,8000,100,1649,6000,201,1650,900,301,TRUE,2 +277,0,0,0,306027,13,306028,7,306040,7,1013,10000,0,1014,3700,103,1015,900,311,,,,FALSE,1 +278,0,0,519,306026,39,306028,26,306041,7,1016,10000,0,1017,7500,233,1018,4800,467,1019,1100,700,FALSE,2 +279,0,300,0,301000,10,,,,,1020,10000,0,1021,8000,103,1022,6000,207,1023,900,311,TRUE,2 +280,0,0,0,306005,17,306003,9,306040,9,1024,10000,0,1025,3700,140,1026,900,422,,,,FALSE,1 +281,0,0,704,306003,33,306040,17,306044,9,1027,10000,0,1028,8000,316,1029,5000,633,1030,1000,950,FALSE,2 +282,0,300,0,301000,10,,,,,1031,10000,0,1032,8000,140,1033,6000,281,1034,900,422,TRUE,2 +283,0,0,0,306015,55,306017,28,306045,28,1035,10000,0,1036,3400,2528,1037,1000,7585,,,,FALSE,1 +284,0,0,12642,306016,109,306045,55,306048,28,1038,10000,0,1039,9100,5688,1040,4000,11377,1041,1100,17066,FALSE,2 +285,0,300,0,301000,10,,,,,1042,10000,0,1043,8000,2528,1044,6000,5056,1045,900,7585,TRUE,2 +286,0,0,0,306055,350,306053,175,306045,35,1046,10000,0,1047,3400,3264,1048,1000,9794,,,,FALSE,1 +287,0,0,16324,306054,700,306045,70,306047,35,1049,10000,0,1050,7300,7345,1051,4600,14691,1052,1200,22037,FALSE,2 +288,0,300,0,301000,10,,,,,1053,10000,0,1054,8000,3264,1055,6000,6529,1056,900,9794,TRUE,2 +451,0,0,0,306045,10,,,,,1651,10000,0,1652,3000,909,1653,1100,2727,,,,FALSE,1 +452,0,0,18186,306007,1374,306016,153,306048,39,1654,10000,0,1655,6300,4091,1656,5300,8183,1657,1200,12275,FALSE,2 +453,0,300,0,301000,10,,,,,1658,10000,0,1659,8000,909,1660,6000,1818,1661,900,2727,TRUE,2 +289,0,0,0,306029,770,306031,390,306045,58,1057,10000,0,1058,3700,3637,1059,900,10912,,,,FALSE,1 +290,0,0,18187,306030,918,306045,77,306046,39,1060,10000,0,1061,7500,8184,1062,4800,16368,1063,1100,24552,FALSE,2 +291,0,300,0,301000,10,,,,,1064,10000,0,1065,8000,3637,1066,6000,7275,1067,900,10912,TRUE,2 +292,0,0,0,306006,770,306007,390,306045,58,1068,10000,0,1069,3700,3637,1070,900,10912,,,,FALSE,1 +293,0,0,18187,306008,918,306045,77,306049,39,1071,10000,0,1072,8000,8184,1073,5000,16368,1074,1000,24552,FALSE,2 +294,0,300,0,301000,10,,,,,1075,10000,0,1076,8000,3637,1077,6000,7275,1078,900,10912,TRUE,2 +295,0,0,0,306016,770,306015,390,306045,58,1079,10000,0,1080,3400,3637,1081,1000,10912,,,,FALSE,1 +296,0,0,18187,306016,918,306045,77,306048,39,1082,10000,0,1083,9100,8184,1084,4000,16368,1085,1100,24552,FALSE,2 +297,0,300,0,301000,10,,,,,1086,10000,0,1087,8000,3637,1088,6000,7275,1089,900,10912,TRUE,2 +298,0,0,0,306053,770,306054,390,306045,58,1090,10000,0,1091,3400,3637,1092,1000,10912,,,,FALSE,1 +299,0,0,18187,306054,918,306045,77,306047,39,1093,10000,0,1094,7300,8184,1095,4600,16368,1096,1200,24552,FALSE,2 +300,0,300,0,301000,10,,,,,1097,10000,0,1098,8000,3637,1099,6000,7275,1100,900,10912,TRUE,2 +457,0,0,0,,,,,,,1673,10000,0,1674,6800,0,1675,500,1,,,,FALSE,1 +458,0,0,2,306001,2,306002,2,306023,1,1676,10000,0,1677,8900,1,1678,7500,2,1679,600,3,FALSE,2 +459,0,300,0,301000,10,,,,,1680,10000,0,1681,8000,0,1682,6000,1,1683,500,1,TRUE,2 +313,0,0,0,306023,1,306025,1,306024,1,1145,10000,0,1146,8500,1,1147,400,5,,,,FALSE,1 +314,0,0,8,306025,3,306024,2,306023,2,1148,10000,0,1149,9600,3,1150,8300,7,1151,500,11,FALSE,2 +315,0,300,17963,306056,20,306067,20,306069,14,1152,10000,0,1153,8000,1798,1154,6000,3596,1155,500,5394,TRUE,2 +316,0,0,0,306002,3,306001,2,306000,2,1156,10000,0,1157,6800,6,1158,500,18,,,,FALSE,1 +317,0,0,30,306002,9,306001,6,306000,6,1159,10000,0,1160,8400,13,1161,7900,27,1162,600,40,FALSE,2 +318,0,300,0,301000,10,,,,,1163,10000,0,1164,8000,6,1165,6000,12,1166,500,18,TRUE,2 +319,0,0,0,306010,12,306011,6,306009,6,1167,10000,0,1168,8500,45,1169,400,136,,,,FALSE,1 +320,0,0,227,306010,34,306009,23,306011,23,1170,10000,0,1171,9000,102,1172,8900,204,1173,500,306,FALSE,2 +321,0,300,0,301000,10,,,,,1174,10000,0,1175,8000,45,1176,6000,90,1177,500,136,TRUE,2 +322,0,0,0,306052,24,306050,12,306040,12,1178,10000,0,1179,8500,664,1180,400,1992,,,,FALSE,1 +323,0,0,3321,306051,70,306050,47,306042,12,1181,10000,0,1182,9000,1494,1183,8900,2988,1184,500,4483,FALSE,2 +324,0,300,0,301000,10,,,,,1185,10000,0,1186,8000,664,1187,6000,1328,1188,500,1992,TRUE,2 +460,0,0,0,,,,,,,1684,10000,0,1685,6800,16,1686,500,50,,,,FALSE,1 +461,0,0,84,306023,11,306002,8,306024,6,1687,10000,0,1688,8900,37,1689,7500,75,1690,600,113,FALSE,2 +462,0,300,0,301000,10,,,,,1691,10000,0,1692,8000,16,1693,6000,33,1694,500,50,TRUE,2 +325,0,0,0,306024,6,306023,3,306025,3,1189,10000,0,1190,8500,19,1191,400,58,,,,FALSE,1 +326,0,0,97,306025,18,306023,12,306024,12,1192,10000,0,1193,9600,43,1194,8300,87,1195,500,131,FALSE,2 +327,0,300,0,301000,10,,,,,1196,10000,0,1197,8000,19,1198,6000,39,1199,500,58,TRUE,2 +328,0,0,0,306002,8,306001,4,306000,4,1200,10000,0,1201,6800,29,1202,500,87,,,,FALSE,1 +329,0,0,146,306001,24,306002,16,306000,16,1203,10000,0,1204,8400,65,1205,7900,131,1206,600,197,FALSE,2 +330,0,300,0,301000,10,,,,,1207,10000,0,1208,8000,29,1209,6000,58,1210,500,87,TRUE,2 +331,0,0,0,306014,28,306013,14,306040,14,1211,10000,0,1212,8500,1749,1213,400,5247,,,,FALSE,1 +332,0,0,8746,306013,56,306040,28,306043,14,1214,10000,0,1215,9000,3935,1216,8900,7871,1217,500,11807,FALSE,2 +333,0,300,0,301000,10,,,,,1218,10000,0,1219,8000,1749,1220,6000,3498,1221,500,5247,TRUE,2 +334,0,0,0,306054,49,306055,25,306045,25,1222,10000,0,1223,8500,2275,1224,400,6827,,,,FALSE,1 +335,0,0,11379,306053,97,306045,49,306047,25,1225,10000,0,1226,9000,5120,1227,8900,10241,1228,500,15361,FALSE,2 +336,0,300,0,301000,10,,,,,1229,10000,0,1230,8000,2275,1231,6000,4551,1232,500,6827,TRUE,2 +463,0,0,0,306040,8,,,,,1695,10000,0,1696,6800,122,1697,500,366,,,,FALSE,1 +464,0,0,610,306004,45,306050,30,306042,8,1698,10000,0,1699,8900,274,1700,7500,549,1701,600,823,FALSE,2 +465,0,300,0,301000,10,,,,,1702,10000,0,1703,8000,122,1704,6000,244,1705,500,366,TRUE,2 +337,0,0,0,306028,16,306026,8,306040,8,1233,10000,0,1234,8500,127,1235,400,383,,,,FALSE,1 +338,0,0,639,306027,31,306040,16,306041,8,1236,10000,0,1237,9600,287,1238,8300,575,1239,500,862,FALSE,2 +339,0,300,0,301000,10,,,,,1240,10000,0,1241,8000,127,1242,6000,255,1243,500,383,TRUE,2 +340,0,0,0,306004,19,306003,10,306040,10,1244,10000,0,1245,6800,173,1246,500,519,,,,FALSE,1 +341,0,0,865,306003,56,306005,38,306044,10,1247,10000,0,1248,8400,389,1249,7900,778,1250,600,1168,FALSE,2 +342,0,300,0,301000,10,,,,,1251,10000,0,1252,8000,173,1253,6000,346,1254,500,519,TRUE,2 +343,0,0,0,306017,640,306016,320,306045,48,1255,10000,0,1256,8500,2952,1257,400,8856,,,,FALSE,1 +344,0,0,14761,306017,762,306045,64,306048,32,1258,10000,0,1259,9000,6642,1260,8900,13285,1261,500,19927,FALSE,2 +345,0,300,0,301000,10,,,,,1262,10000,0,1263,8000,2952,1264,6000,5904,1265,500,8856,TRUE,2 +346,0,0,0,306053,760,306054,380,306045,57,1266,10000,0,1267,8500,3607,1268,400,10822,,,,FALSE,1 +347,0,0,18037,306055,1368,306053,152,306047,38,1269,10000,0,1270,9000,8116,1271,8900,16233,1272,500,24350,FALSE,2 +348,0,300,0,301000,10,,,,,1273,10000,0,1274,8000,3607,1275,6000,7215,1276,500,10822,TRUE,2 +101400001,0,0,0,306045,120,,,,,1014000011,10000,0,1014000012,2800,20000,1014000013,1200,25000,,,,FALSE,1 +101400002,0,0,20000,306046,50,306049,50,306048,50,1014000021,10000,0,1014000022,8400,15000,1014000023,3200,20000,1014000024,1500,35000,FALSE,2 +101400003,0,450000,0,301000,10,,,,,1014000031,10000,0,1014000032,8000,4147,1014000033,6000,8295,1014000034,900,12442,TRUE,2 +101410001,0,0,0,306045,30,306046,10,,,1014100011,10000,0,1014100012,3000,15000,1014100013,1100,25000,,,,FALSE,1 +101410002,0,0,15000,306030,890,306045,100,306046,60,1014100021,10000,0,1014100022,6000,10000,1014100023,4200,20000,1014100024,1600,25000,FALSE,2 +101410003,0,450000,0,301000,10,,,,,1014100031,10000,0,1014100032,8000,4231,1014100033,6000,8463,1014100034,900,12694,TRUE,2 +101420001,0,0,0,306045,30,306049,10,,,1014200011,10000,0,1014200012,2800,15000,1014200013,1200,25000,,,,FALSE,1 +101420002,0,0,15000,306008,890,306045,100,306049,60,1014200021,10000,0,1014200022,9000,10000,1014200023,2800,20000,1014200024,1600,25000,FALSE,2 +101420003,0,450000,0,301000,10,,,,,1014200031,10000,0,1014200032,8000,4321,1014200033,6000,8643,1014200034,900,12964,TRUE,2 +101430001,0,0,0,306045,60,306048,20,,,1014300011,10000,0,1014300012,3400,18000,1014300013,1000,28000,,,,FALSE,1 +101430002,0,0,18000,306016,990,306045,150,306048,80,1014300021,10000,0,1014300022,7900,12000,1014300023,3400,24000,1014300024,1500,30000,FALSE,2 +101430003,0,450000,0,301000,10,,,,,1014300031,10000,0,1014300032,8000,4417,1014300033,6000,8835,1014300034,900,13252,TRUE,2 +101440001,0,0,0,306045,60,306047,30,,,1014400011,10000,0,1014400012,3000,18000,1014400013,1100,28000,,,,FALSE,1 +101440002,0,0,18000,306054,990,306045,150,306047,80,1014400021,10000,0,1014400022,6000,12000,1014400023,4200,24000,1014400024,1600,30000,FALSE,2 +101440003,0,450000,0,301000,10,,,,,1014400031,10000,0,1014400032,8000,4519,1014400033,6000,9039,1014400034,900,13558,TRUE,2 +102400001,0,0,0,306045,120,,,,,1024000011,10000,0,1024000012,4800,20000,1024000013,700,25000,,,,FALSE,1 +102400002,0,0,25000,306046,50,306049,50,306048,50,1024000021,10000,0,1024000022,9400,10000,1024000023,5300,20000,1024000024,800,35000,FALSE,2 +102400003,0,450000,0,301000,10,,,,,1024000031,10000,0,1024000032,8000,4147,1024000033,6000,8295,1024000034,900,12442,TRUE,2 +102410001,0,0,0,306045,30,306046,10,,,1024100011,10000,0,1024100012,4200,15000,1024100013,800,25000,,,,FALSE,1 +102410002,0,0,15000,306031,890,306045,100,306046,80,1024100021,10000,0,1024100022,7400,10000,1024100023,6000,20000,1024100024,900,25000,FALSE,2 +102410003,0,450000,0,301000,10,,,,,1024100031,10000,0,1024100032,8000,4231,1024100033,6000,8463,1024100034,900,12694,TRUE,2 +102420001,0,0,0,306045,30,306049,10,,,1024200011,10000,0,1024200012,5600,15000,1024200013,600,25000,,,,FALSE,1 +102420002,0,0,18000,306006,890,306045,100,306049,80,1024200021,10000,0,1024200022,7900,10000,1024200023,6300,20000,1024200024,800,25000,FALSE,2 +102420003,0,450000,0,301000,10,,,,,1024200031,10000,0,1024200032,8000,4321,1024200033,6000,8643,1024200034,900,12964,TRUE,2 +102430001,0,0,0,306045,60,306048,20,,,1024300011,10000,0,1024300012,5600,18000,1024300013,600,28000,,,,FALSE,1 +102430002,0,0,20000,306015,990,306045,150,306048,80,1024300021,10000,0,1024300022,9000,12000,1024300023,5600,24000,1024300024,800,30000,FALSE,2 +102430003,0,450000,0,301000,10,,,,,1024300031,10000,0,1024300032,8000,4417,1024300033,6000,8835,1024300034,900,13252,TRUE,2 +102440001,0,0,0,306045,60,306047,30,,,1024400011,10000,0,1024400012,4800,18000,1024400013,700,28000,,,,FALSE,1 +102440002,0,0,22000,306053,990,306045,150,306047,80,1024400021,10000,0,1024400022,7400,12000,1024400023,6000,24000,1024400024,900,30000,FALSE,2 +102440003,0,450000,0,301000,10,,,,,1024400031,10000,0,1024400032,8000,4519,1024400033,6000,9039,1024400034,900,13558,TRUE,2 +226,0,0,0,306053,500,306045,50,,,826,10000,0,827,5600,15000,828,600,20000,,,,FALSE,1 +227,0,0,20000,306055,500,306045,50,306047,80,829,10000,0,830,8800,15000,831,5700,20000,832,800,30000,FALSE,2 +228,0,450000,0,301000,10,,,,,833,10000,0,834,8000,18511,835,6000,37023,836,900,55534,TRUE,2 +103500001,0,0,0,306045,120,,,,,1035000011,10000,0,1035000012,4800,20000,1035000013,700,25000,,,,FALSE,1 +103500002,0,0,25000,306046,50,306049,50,306048,50,1035000021,10000,0,1035000022,8500,15000,1035000023,5900,20000,1035000024,800,35000,FALSE,2 +103500003,0,450000,0,301000,10,,,,,1035000031,10000,0,1035000032,8000,4147,1035000033,6000,8295,1035000034,900,12442,TRUE,2 +103510001,0,0,0,306045,30,306046,10,,,1035100011,10000,0,1035100012,5600,15000,1035100013,600,25000,,,,FALSE,1 +103510002,0,0,15000,306029,890,306045,100,306046,80,1035100021,10000,0,1035100022,9500,10000,1035100023,6000,20000,1035100024,700,25000,FALSE,2 +103510003,0,450000,0,301000,10,,,,,1035100031,10000,0,1035100032,8000,4231,1035100033,6000,8463,1035100034,900,12694,TRUE,2 +103520001,0,0,0,306045,30,306049,10,,,1035200011,10000,0,1035200012,4800,15000,1035200013,700,25000,,,,FALSE,1 +103520002,0,0,18000,306007,890,306045,100,306049,80,1035200021,10000,0,1035200022,8400,10000,1035200023,6000,20000,1035200024,800,25000,FALSE,2 +103520003,0,450000,0,301000,10,,,,,1035200031,10000,0,1035200032,8000,4321,1035200033,6000,8643,1035200034,900,12964,TRUE,2 +103530001,0,0,0,306045,60,306048,20,,,1035300011,10000,0,1035300012,5600,18000,1035300013,600,28000,,,,FALSE,1 +103530002,0,0,20000,306017,990,306045,150,306048,80,1035300021,10000,0,1035300022,7600,12000,1035300023,6600,24000,1035300024,800,30000,FALSE,2 +103530003,0,450000,0,301000,10,,,,,1035300031,10000,0,1035300032,8000,4417,1035300033,6000,8835,1035300034,900,13252,TRUE,2 +103540001,0,0,0,306045,60,306047,30,,,1035400011,10000,0,1035400012,5600,18000,1035400013,600,28000,,,,FALSE,1 +103540002,0,0,22000,306055,990,306045,150,306047,80,1035400021,10000,0,1035400022,8800,12000,1035400023,5700,24000,1035400024,800,30000,FALSE,2 +103540003,0,450000,0,301000,10,,,,,1035400031,10000,0,1035400032,8000,4519,1035400033,6000,9039,1035400034,900,13558,TRUE,2 +104500001,0,0,0,306045,120,,,,,1045000011,10000,0,1045000012,3000,20000,1045000013,1100,25000,,,,FALSE,1 +104500002,0,0,25000,306046,50,306049,50,306048,50,1045000021,10000,0,1045000022,6300,15000,1045000023,5300,20000,1045000024,1200,35000,FALSE,2 +104500003,0,450000,0,301000,10,,,,,1045000031,10000,0,1045000032,8000,4147,1045000033,6000,8295,1045000034,900,12442,TRUE,2 +104510001,0,0,0,306045,30,306046,10,,,1045100011,10000,0,1045100012,3700,15000,1045100013,900,25000,,,,FALSE,1 +104510002,0,0,15000,306030,890,306045,100,306046,80,1045100021,10000,0,1045100022,7500,10000,1045100023,4800,20000,1045100024,1100,25000,FALSE,2 +104510003,0,450000,0,301000,10,,,,,1045100031,10000,0,1045100032,8000,4231,1045100033,6000,8463,1045100034,900,12694,TRUE,2 +104520001,0,0,0,306045,30,306049,10,,,1045200011,10000,0,1045200012,3700,15000,1045200013,900,25000,,,,FALSE,1 +104520002,0,0,18000,306008,890,306045,100,306049,80,1045200021,10000,0,1045200022,8000,10000,1045200023,5000,20000,1045200024,1000,25000,FALSE,2 +104520003,0,450000,0,301000,10,,,,,1045200031,10000,0,1045200032,8000,4321,1045200033,6000,8643,1045200034,900,12964,TRUE,2 +104530001,0,0,0,306045,60,306048,20,,,1045300011,10000,0,1045300012,3400,18000,1045300013,1000,28000,,,,FALSE,1 +104530002,0,0,20000,306015,990,306045,150,306048,80,1045300021,10000,0,1045300022,9100,12000,1045300023,4000,24000,1045300024,1100,30000,FALSE,2 +104530003,0,450000,0,301000,10,,,,,1045300031,10000,0,1045300032,8000,4417,1045300033,6000,8835,1045300034,900,13252,TRUE,2 +104540001,0,0,0,306045,60,306047,30,,,1045400011,10000,0,1045400012,3400,18000,1045400013,1000,28000,,,,FALSE,1 +104540002,0,0,22000,306054,990,306045,150,306047,80,1045400021,10000,0,1045400022,7300,12000,1045400023,4600,24000,1045400024,1200,30000,FALSE,2 +104540003,0,450000,0,301000,10,,,,,1045400031,10000,0,1045400032,8000,4519,1045400033,6000,9039,1045400034,900,13558,TRUE,2 +105400001,0,0,0,306045,120,,,,,1054000011,10000,0,1054000012,6800,20000,1054000013,500,25000,,,,FALSE,1 +105400002,0,0,25000,306046,50,306049,50,306048,50,1054000021,10000,0,1054000022,8900,15000,1054000023,7500,20000,1054000024,600,35000,FALSE,2 +105400003,0,450000,0,301000,10,,,,,1054000031,10000,0,1054000032,8000,4147,1054000033,6000,8295,1054000034,500,12442,TRUE,2 +105410001,0,0,0,306045,30,306046,10,,,1054100011,10000,0,1054100012,8500,15000,1054100013,400,25000,,,,FALSE,1 +105410002,0,0,15000,306029,890,306045,100,306046,80,1054100021,10000,0,1054100022,9600,10000,1054100023,8300,20000,1054100024,500,25000,FALSE,2 +105410003,0,450000,0,301000,10,,,,,1054100031,10000,0,1054100032,8000,4231,1054100033,6000,8463,1054100034,500,12694,TRUE,2 +105420001,0,0,0,306045,30,306049,10,,,1054200011,10000,0,1054200012,6800,15000,1054200013,500,25000,,,,FALSE,1 +105420002,0,0,18000,306006,890,306045,100,306049,80,1054200021,10000,0,1054200022,8400,10000,1054200023,7900,20000,1054200024,600,25000,FALSE,2 +105420003,0,450000,0,301000,10,,,,,1054200031,10000,0,1054200032,8000,4321,1054200033,6000,8643,1054200034,500,12964,TRUE,2 +105430001,0,0,0,306045,60,306048,20,,,1054300011,10000,0,1054300012,8500,18000,1054300013,400,28000,,,,FALSE,1 +105430002,0,0,20000,306016,990,306045,150,306048,80,1054300021,10000,0,1054300022,9000,12000,1054300023,8900,24000,1054300024,500,30000,FALSE,2 +105430003,0,450000,0,301000,10,,,,,1054300031,10000,0,1054300032,8000,4417,1054300033,6000,8835,1054300034,500,13252,TRUE,2 +105440001,0,0,0,306045,60,306047,30,,,1054400011,10000,0,1054400012,8500,18000,1054400013,400,28000,,,,FALSE,1 +105440002,0,0,22000,306055,990,306045,150,306047,80,1054400021,10000,0,1054400022,9000,12000,1054400023,8900,24000,1054400024,500,30000,FALSE,2 +105440003,0,450000,0,301000,10,,,,,1054400031,10000,0,1054400032,8000,4519,1054400033,6000,9039,1054400034,500,13558,TRUE,2 +120010011,0,0,0,600102,40,,,,,1200100111,10000,0,,,,,,,,,,FALSE,1 +120010012,0,0,0,600102,40,,,,,1200100121,10000,0,,,,,,,,,,FALSE,1 +120010013,0,0,0,600102,40,,,,,1200100131,10000,0,,,,,,,,,,FALSE,1 +120010021,0,0,0,600102,100,600103,40,,,1200100211,10000,0,,,,,,,,,,FALSE,1 +120010022,0,0,0,600102,100,600103,40,,,1200100221,10000,0,,,,,,,,,,FALSE,1 +120010023,0,0,0,600102,100,600103,40,,,1200100231,10000,0,,,,,,,,,,FALSE,1 +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,960,306070,200,,,1015000011,10000,0,1015000012,6000,6000,1015000013,1100,20000,1015000014,500,100800,FALSE,1 +101500002,0,0,0,306080,960,306070,200,,,1015000021,10000,0,1015000022,6000,6000,1015000023,1100,20000,1015000024,500,100800,FALSE,1 +101510001,0,0,1,306075,720,306070,60,306071,40,1015100011,10000,0,1015100012,6000,3000,1015100013,1100,10000,1015100014,500,50400,FALSE,1 +101510002,0,0,1,306075,720,306070,60,306071,40,1015100021,10000,0,1015100022,6000,3000,1015100023,1100,10000,1015100024,500,50400,FALSE,1 +101520001,0,0,1,306075,720,306070,60,306072,40,1015200011,10000,0,1015200012,6000,3000,1015200013,1100,10000,1015200014,500,50400,FALSE,1 +101520002,0,0,1,306075,720,306070,60,306072,40,1015200021,10000,0,1015200022,6000,3000,1015200023,1100,10000,1015200024,500,50400,FALSE,1 +101520003,0,0,1,306075,720,306070,60,306072,40,1015200031,10000,0,1015200032,6000,3000,1015200033,1100,10000,1015200034,500,50400,FALSE,1 +101530001,0,0,1,306080,960,306070,120,306073,60,1015300011,10000,0,1015300012,6000,6000,1015300013,1100,20000,1015300014,500,100800,FALSE,1 +101530002,0,0,1,306080,960,306070,120,306073,60,1015300021,10000,0,1015300022,6000,6000,1015300023,1100,20000,1015300024,500,100800,FALSE,1 +101540001,0,0,1,306080,960,306070,120,306074,60,1015400011,10000,0,1015400012,6000,6000,1015400013,1100,20000,1015400014,500,100800,FALSE,1 +101540002,0,0,1,306080,960,306070,120,306074,60,1015400021,10000,0,1015400022,6000,6000,1015400023,1100,20000,1015400024,500,100800,FALSE,1 +101540003,0,0,1,306080,960,306070,120,306074,60,1015400031,10000,0,1015400032,6000,6000,1015400033,1100,20000,1015400034,500,100800,FALSE,1 +102500011,0,0,1,306082,960,306070,200,,,1025000111,10000,0,1025000112,6000,6000,1025000113,1100,20000,1025000114,500,100800,FALSE,1 +102500012,0,0,1,306082,960,306070,200,,,1025000121,10000,0,1025000122,6000,6000,1025000123,1100,20000,1025000124,500,100800,FALSE,1 +102510011,0,0,1,306076,720,306070,60,306071,40,1025100111,10000,0,1025100112,6000,3000,1025100113,1100,10000,1025100114,500,50400,FALSE,1 +102510012,0,0,1,306076,720,306070,60,306071,40,1025100121,10000,0,1025100122,6000,3000,1025100123,1100,10000,1025100124,500,50400,FALSE,1 +102520011,0,0,1,306076,720,306070,60,306072,40,1025200111,10000,0,1025200112,6000,3000,1025200113,1100,10000,1025200114,500,50400,FALSE,1 +102520012,0,0,1,306076,720,306070,60,306072,40,1025200121,10000,0,1025200122,6000,3000,1025200123,1100,10000,1025200124,500,50400,FALSE,1 +102520013,0,0,1,306076,720,306070,60,306072,40,1025200131,10000,0,1025200132,6000,3000,1025200133,1100,10000,1025200134,500,50400,FALSE,1 +102530011,0,0,1,306082,960,306070,120,306073,60,1025300111,10000,0,1025300112,6000,6000,1025300113,1100,20000,1025300114,500,100800,FALSE,1 +102530012,0,0,1,306082,960,306070,120,306073,60,1025300121,10000,0,1025300122,6000,6000,1025300123,1100,20000,1025300124,500,100800,FALSE,1 +102540011,0,0,1,306082,960,306070,120,306074,60,1025400111,10000,0,1025400112,6000,6000,1025400113,1100,20000,1025400114,500,100800,FALSE,1 +102540012,0,0,1,306082,960,306070,120,306074,60,1025400121,10000,0,1025400122,6000,6000,1025400123,1100,20000,1025400124,500,100800,FALSE,1 +102540013,0,0,1,306082,960,306070,120,306074,60,1025400131,10000,0,1025400132,6000,6000,1025400133,1100,20000,1025400134,500,100800,FALSE,1 +103500011,0,0,1,306081,960,306070,200,,,1035000111,10000,0,1035000112,6000,6000,1035000113,1100,20000,1035000114,500,100800,FALSE,1 +103500012,0,0,1,306081,960,306070,200,,,1035000121,10000,0,1035000122,6000,6000,1035000123,1100,20000,1035000124,500,100800,FALSE,1 +103510011,0,0,1,306077,720,306070,60,306071,40,1035100111,10000,0,1035100112,6000,3000,1035100113,1100,10000,1035100114,500,50400,FALSE,1 +103510012,0,0,1,306077,720,306070,60,306071,40,1035100121,10000,0,1035100122,6000,3000,1035100123,1100,10000,1035100124,500,50400,FALSE,1 +103520011,0,0,1,306077,720,306070,60,306072,40,1035200111,10000,0,1035200112,6000,3000,1035200113,1100,10000,1035200114,500,50400,FALSE,1 +103520012,0,0,1,306077,720,306070,60,306072,40,1035200121,10000,0,1035200122,6000,3000,1035200123,1100,10000,1035200124,500,50400,FALSE,1 +103520013,0,0,1,306077,720,306070,60,306072,40,1035200131,10000,0,1035200132,6000,3000,1035200133,1100,10000,1035200134,500,50400,FALSE,1 +103530011,0,0,1,306081,960,306070,120,306073,60,1035300111,10000,0,1035300112,6000,6000,1035300113,1100,20000,1035300114,500,100800,FALSE,1 +103530012,0,0,1,306081,960,306070,120,306073,60,1035300121,10000,0,1035300122,6000,6000,1035300123,1100,20000,1035300124,500,100800,FALSE,1 +103540011,0,0,1,306081,960,306070,120,306074,60,1035400111,10000,0,1035400112,6000,6000,1035400113,1100,20000,1035400114,500,100800,FALSE,1 +103540012,0,0,1,306081,960,306070,120,306074,60,1035400121,10000,0,1035400122,6000,6000,1035400123,1100,20000,1035400124,500,100800,FALSE,1 +103540013,0,0,1,306081,960,306070,120,306074,60,1035400131,10000,0,1035400132,6000,6000,1035400133,1100,20000,1035400134,500,100800,FALSE,1 +104500011,0,0,1,306083,960,306070,200,,,1045000111,10000,0,1045000112,6000,6000,1045000113,1100,20000,1045000114,500,100800,FALSE,1 +104500012,0,0,1,306083,960,306070,200,,,1045000121,10000,0,1045000122,6000,6000,1045000123,1100,20000,1045000124,500,100800,FALSE,1 +104510011,0,0,1,306078,720,306070,60,306071,40,1045100111,10000,0,1045100112,6000,3000,1045100113,1100,10000,1045100114,500,50400,FALSE,1 +104510012,0,0,1,306078,720,306070,60,306071,40,1045100121,10000,0,1045100122,6000,3000,1045100123,1100,10000,1045100124,500,50400,FALSE,1 +104520011,0,0,1,306078,720,306070,60,306072,40,1045200111,10000,0,1045200112,6000,3000,1045200113,1100,10000,1045200114,500,50400,FALSE,1 +104520012,0,0,1,306078,720,306070,60,306072,40,1045200121,10000,0,1045200122,6000,3000,1045200123,1100,10000,1045200124,500,50400,FALSE,1 +104520013,0,0,1,306078,720,306070,60,306072,40,1045200131,10000,0,1045200132,6000,3000,1045200133,1100,10000,1045200134,500,50400,FALSE,1 +104530011,0,0,1,306083,960,306070,120,306073,60,1045300111,10000,0,1045300112,6000,6000,1045300113,1100,20000,1045300114,500,100800,FALSE,1 +104530012,0,0,1,306083,960,306070,120,306073,60,1045300121,10000,0,1045300122,6000,6000,1045300123,1100,20000,1045300124,500,100800,FALSE,1 +104540011,0,0,1,306083,960,306070,120,306074,60,1045400111,10000,0,1045400112,6000,6000,1045400113,1100,20000,1045400114,500,100800,FALSE,1 +104540012,0,0,1,306083,960,306070,120,306074,60,1045400121,10000,0,1045400122,6000,6000,1045400123,1100,20000,1045400124,500,100800,FALSE,1 +104540013,0,0,1,306083,960,306070,120,306074,60,1045400131,10000,0,1045400132,6000,6000,1045400133,1100,20000,1045400134,500,100800,FALSE,1 +105500001,0,0,1,306084,960,306070,200,,,1055000011,10000,0,1055000012,6000,6000,1055000013,1100,20000,1055000014,500,100800,FALSE,1 +105500002,0,0,1,306084,960,306070,200,,,1055000021,10000,0,1055000022,6000,6000,1055000023,1100,20000,1055000024,500,100800,FALSE,1 +105510001,0,0,1,306079,720,306070,60,306071,40,1055100011,10000,0,1055100012,6000,3000,1055100013,1100,10000,1055100014,500,50400,FALSE,1 +105510002,0,0,1,306079,720,306070,60,306071,40,1055100021,10000,0,1055100022,6000,3000,1055100023,1100,10000,1055100024,500,50400,FALSE,1 +105520001,0,0,1,306079,720,306070,60,306072,40,1055200011,10000,0,1055200012,6000,3000,1055200013,1100,10000,1055200014,500,50400,FALSE,1 +105520002,0,0,1,306079,720,306070,60,306072,40,1055200021,10000,0,1055200022,6000,3000,1055200023,1100,10000,1055200024,500,50400,FALSE,1 +105520003,0,0,1,306079,720,306070,60,306072,40,1055200031,10000,0,1055200032,6000,3000,1055200033,1100,10000,1055200034,500,50400,FALSE,1 +105530001,0,0,1,306084,960,306070,120,306073,60,1055300011,10000,0,1055300012,6000,6000,1055300013,1100,20000,1055300014,500,100800,FALSE,1 +105530002,0,0,1,306084,960,306070,120,306073,60,1055300021,10000,0,1055300022,6000,6000,1055300023,1100,20000,1055300024,500,100800,FALSE,1 +105540001,0,0,1,306084,960,306070,120,306074,60,1055400011,10000,0,1055400012,6000,6000,1055400013,1100,20000,1055400014,500,100800,FALSE,1 +105540002,0,0,1,306084,960,306070,120,306074,60,1055400021,10000,0,1055400022,6000,6000,1055400023,1100,20000,1055400024,500,100800,FALSE,1 +105540003,0,0,1,306084,960,306070,120,306074,60,1055400031,10000,0,1055400032,6000,6000,1055400033,1100,20000,1055400034,500,100800,FALSE,1"; + } +} diff --git a/.Lib9c.Tests/Fixtures/TableCSV/Item/MaterialItemSheetFixtures.cs b/.Lib9c.Tests/Fixtures/TableCSV/Item/MaterialItemSheetFixtures.cs new file mode 100644 index 0000000000..1e60c90b74 --- /dev/null +++ b/.Lib9c.Tests/Fixtures/TableCSV/Item/MaterialItemSheetFixtures.cs @@ -0,0 +1,204 @@ +namespace Lib9c.Tests.Fixtures.TableCSV.Item +{ + public static class MaterialItemSheetFixtures + { + public const string Default = @"id,_name,item_sub_type,grade,elemental_type +100000,보물상자,NormalMaterial,1,Normal +301000,핏빛 보석,NormalMaterial,1,Normal +302000,쌀,FoodMaterial,1,Normal +302001,생선,FoodMaterial,1,Normal +302002,깡통,FoodMaterial,1,Normal +302003,달걀,FoodMaterial,1,Normal +302004,암염,FoodMaterial,3,Normal +302005,올리브유,FoodMaterial,1,Normal +302006,허브,FoodMaterial,4,Normal +302007,비린내 나는 고기,FoodMaterial,1,Normal +302008,맛있어 보이는 고기,FoodMaterial,1,Normal +302009,일품급 고기,FoodMaterial,1,Normal +302010,고급 암염,FoodMaterial,4,Normal +302011,고급 허브,FoodMaterial,5,Normal +302012,새우,FoodMaterial,2,Normal +302013,치킨,FoodMaterial,2,Normal +302014,토마토 소스,FoodMaterial,2,Normal +302015,장작,FoodMaterial,2,Normal +302016,아몬드,FoodMaterial,2,Normal +302017,꿀,FoodMaterial,3,Normal +302018,간장,FoodMaterial,4,Normal +302019,토마토 소스,FoodMaterial,3,Normal +302020,장작,FoodMaterial,3,Normal +302021,꿀,FoodMaterial,4,Normal +302022,간장,FoodMaterial,5,Normal +302023,차가운 얼음,FoodMaterial,2,Normal +302024,연유,FoodMaterial,3,Normal +302025,동글이 잎사귀,FoodMaterial,3,Normal +302026,얼어붙은 열매,FoodMaterial,4,Normal +302027,서리 결정,FoodMaterial,5,Normal +800101,조개껍질,FoodMaterial,2,Normal +800102,선글라스,FoodMaterial,3,Normal +800103,아이스크림,FoodMaterial,4,Normal +800104,멜론,FoodMaterial,2,Normal +800105,코코넛,FoodMaterial,3,Normal +800106,파인애플,FoodMaterial,4,Normal +800107,Candy_Cane,FoodMaterial,2,Normal +800108,Aurora_Powder,FoodMaterial,3,Normal +800109,Fluffy_Marshmallow,FoodMaterial,4,Normal +800201,황금 고기,FoodMaterial,4,Normal +303000,녹슨 칼,EquipmentMaterial,1,Normal +303001,버려진 검,EquipmentMaterial,2,Normal +303002,단단한 검,EquipmentMaterial,3,Normal +303003,영험한 기운의 검,EquipmentMaterial,4,Normal +303004,전설의 검,EquipmentMaterial,5,Normal +303100,낡은 옷,EquipmentMaterial,1,Normal +303101,버려진 옷,EquipmentMaterial,2,Normal +303102,단단한 옷,EquipmentMaterial,3,Normal +303103,영험한 기운의 갑옷,EquipmentMaterial,4,Normal +303104,전설의 옷,EquipmentMaterial,5,Normal +303200,낡은 끈,EquipmentMaterial,1,Normal +303201,버려진 허리띠,EquipmentMaterial,2,Normal +303202,단단한 벨트,EquipmentMaterial,3,Normal +303203,영험한 기운의 벨트,EquipmentMaterial,4,Normal +303204,전설의 벨트,EquipmentMaterial,5,Normal +303300,낡은 목걸이,EquipmentMaterial,1,Normal +303301,버려진 목걸이,EquipmentMaterial,2,Normal +303302,단단한 목걸이,EquipmentMaterial,3,Normal +303303,영험한 기운의 목걸이,EquipmentMaterial,4,Normal +303304,전설의 목걸이,EquipmentMaterial,5,Normal +303400,낡은 반지,EquipmentMaterial,1,Normal +303401,버려진 반지,EquipmentMaterial,2,Normal +303402,단단한 반지,EquipmentMaterial,3,Normal +303403,영험한 기운의 반지,EquipmentMaterial,4,Normal +303404,전설의 반지,EquipmentMaterial,5,Normal +304000,불의 정수,MonsterPart,1,Fire +304001,대지의 정수,MonsterPart,1,Land +304002,물의 정수,MonsterPart,1,Water +304003,바람의 정수,MonsterPart,1,Wind +305000,얼음의 염료,MonsterPart,1,Water +305001,불의 염료,MonsterPart,1,Fire +305002,숲의 염료,MonsterPart,1,Normal +305003,요정의 염료,MonsterPart,1,Normal +305004,여신의 염료,MonsterPart,1,Normal +306000,차가운 씨앗 껍질,MonsterPart,1,Water +306001,작은 잎사귀,MonsterPart,1,Water +306002,시들지 않는 잎사귀,MonsterPart,1,Water +306003,빛나는 액체,MonsterPart,2,Water +306004,부드러운 줄기,MonsterPart,2,Water +306005,물컹한 씨앗,MonsterPart,2,Water +306006,푸른 빛의 꽃,MonsterPart,3,Water +306007,푸른 열매,MonsterPart,3,Water +306008,영혼의 결정,MonsterPart,3,Water +306009,작은 돌멩이,MonsterPart,2,Land +306010,부서진 돌날,MonsterPart,2,Land +306011,부드러운 솜털,MonsterPart,2,Land +306012,희귀한 돌조각,MonsterPart,2,Land +306013,낡은 칼자루,MonsterPart,2,Land +306014,대지의 열매,MonsterPart,2,Land +306015,부서진 마법석,MonsterPart,3,Land +306016,대지의 정령석,MonsterPart,3,Land +306017,어둠의 휘장,MonsterPart,3,Land +306018,마력의 구슬,MonsterPart,4,Land +306019,여우 가죽,MonsterPart,4,Land +306020,여우의 송곳니,MonsterPart,4,Land +306021,대지의 창 날,MonsterPart,5,Land +306022,대지의 견장,MonsterPart,5,Land +306023,나무껍질,MonsterPart,1,Fire +306024,나무조각,MonsterPart,1,Fire +306025,단단한 껍질,MonsterPart,1,Fire +306026,두꺼운 천조각,MonsterPart,2,Fire +306027,날카로운 무기 조각,MonsterPart,2,Fire +306028,하얀 가루,MonsterPart,2,Fire +306029,단단한 쇳조각,MonsterPart,3,Fire +306030,반짝이는 돌,MonsterPart,3,Fire +306031,단단한 쇠사슬,MonsterPart,3,Fire +306032,화염의 부러진 지팡이,MonsterPart,4,Fire +306033,화염의 제림니르 도끼,MonsterPart,4,Fire +306034,화염의 제림니르 철퇴,MonsterPart,4,Fire +306035,수액 덩어리,MonsterPart,2,Normal +306036,화염의 수액 덩어리,MonsterPart,2,Fire +306037,바람의 수액 덩어리,MonsterPart,2,Wind +306038,대지의 수액 덩어리,MonsterPart,2,Land +306039,물의 수액 덩어리,MonsterPart,2,Water +306040,수액 덩어리(소),MonsterPart,1,Normal +306041,화염의 수액 덩어리(소),MonsterPart,1,Fire +306042,바람의 수액 덩어리(소),MonsterPart,1,Wind +306043,대지의 수액 덩어리(소),MonsterPart,1,Land +306044,물의 수액 덩어리(소),MonsterPart,1,Water +306045,수액 덩어리(대),MonsterPart,3,Normal +306046,화염의 수액 덩어리(대),MonsterPart,4,Fire +306047,바람의 수액 덩어리(대),MonsterPart,4,Wind +306048,대지의 수액 덩어리(대),MonsterPart,4,Land +306049,물의 수액 덩어리(대),MonsterPart,4,Water +306050,가벼운 천 조각,MonsterPart,2,Wind +306051,희귀한 원석,MonsterPart,2,Wind +306052,영웅의 증표,MonsterPart,2,Wind +306053,날카로운 발톱,MonsterPart,3,Wind +306054,원한이 깃든 장식,MonsterPart,3,Wind +306055,고대의 마법서,MonsterPart,3,Wind +306056,브론즈 엠블렘,MonsterPart,1,Normal +306057,실버 엠블렘,MonsterPart,2,Normal +306058,화염의 나무둔기,MonsterPart,1,Fire +306059,화염의 작은 투구,MonsterPart,1,Fire +306060,화염의 멧돼지뿔,MonsterPart,1,Fire +306061,화염의 허리가방,MonsterPart,1,Fire +306062,화염의 둔기 조각,MonsterPart,1,Fire +306063,화염의 하얀 털다발,MonsterPart,1,Fire +306064,화염의 큰 멧돼지뿔,MonsterPart,1,Fire +306065,화염의 무거운 견장,MonsterPart,1,Fire +306066,화염의 달궈진 쇠사슬,MonsterPart,1,Fire +306067,화염의 부러진 지팡이,MonsterPart,1,Fire +306068,화염의 제림니르 도끼,MonsterPart,2,Fire +306069,화염의 제림니르 철퇴,MonsterPart,2,Fire +306070,수액 결정,MonsterPart,5,Normal +306071,화염의 수액 결정,MonsterPart,5,Fire +306072,바람의 수액 결정,MonsterPart,5,Wind +306073,대지의 수액 결정,MonsterPart,5,Land +306074,물의 수액 결정,MonsterPart,5,Water +306075,얼어붙은 잎사귀,MonsterPart,4,Water +306076,얼어붙은 열매,MonsterPart,4,Water +306077,날카로운 얼음 파편,MonsterPart,4,Water +306078,짙은 보석 결정,MonsterPart,4,Water +306079,튼튼한 뿔 조각,MonsterPart,4,Water +306080,뾰족한 철재 파편,MonsterPart,4,Water +306081,얼어붙은 방패 파편,MonsterPart,4,Water +306082,뽀족한 칼날 가면,MonsterPart,4,Water +306083,랜턴 파편,MonsterPart,4,Water +306084,어둠의 정수 파편,MonsterPart,4,Water +400000,모래시계,Hourglass,4,Normal +500000,AP 스톤,ApStone,4,Normal +600101,Special Crystal Piece,EquipmentMaterial,1,Normal +600102,Special Crystal Lump,EquipmentMaterial,2,Normal +600103,Special Crystal Ore,EquipmentMaterial,3,Normal +600104,Special Crystal Jewel,EquipmentMaterial,4,Normal +600201,황금 가루,EquipmentMaterial,4,Normal +600202,Aura 가루,EquipmentMaterial,4,Normal +700000,아레나 시즌0 메달,NormalMaterial,5,Normal +700001,아레나 시즌1 메달,NormalMaterial,5,Normal +700002,아레나 시즌2 메달,NormalMaterial,5,Normal +700003,아레나 시즌3 메달,NormalMaterial,5,Normal +700004,아레나 시즌4 메달,NormalMaterial,5,Normal +700005,아레나 시즌5 메달,NormalMaterial,5,Normal +700006,아레나 시즌6 메달,NormalMaterial,5,Normal +700007,아레나 시즌7 메달,NormalMaterial,5,Normal +700008,아레나 시즌8 메달,NormalMaterial,5,Normal +700009,아레나 시즌9 메달,NormalMaterial,5,Normal +700010,아레나 시즌10 메달,NormalMaterial,5,Normal +700102,시즌 3 메달,NormalMaterial,5,Normal +700104,시즌 4 메달,NormalMaterial,5,Normal +700106,시즌 5 메달,NormalMaterial,5,Normal +700108,챔피언 쉽 1 메달,NormalMaterial,5,Normal +700202,시즌 7 메달,NormalMaterial,5,Normal +700204,시즌 8 메달,NormalMaterial,5,Normal +700206,챔피언 쉽 2 메달,NormalMaterial,5,Normal +700302,시즌 9 메달,NormalMaterial,5,Normal +700304,시즌 10 메달,NormalMaterial,5,Normal +700306,챔피언 쉽 3 메달,NormalMaterial,5,Normal +700402,시즌 11 메달,NormalMaterial,5,Normal +700404,시즌 12 메달,NormalMaterial,5,Normal +700406,챔피언 쉽 4 메달,NormalMaterial,5,Normal +700502,시즌 13 메달,NormalMaterial,5,Normal +700504,시즌 14 메달,NormalMaterial,5,Normal +700506,챔피언 쉽 5 메달,NormalMaterial,5,Normal +700602,시즌 15 메달,NormalMaterial,5,Normal +700604,시즌 16 메달,NormalMaterial,5,Normal +700606,챔피언 쉽 6 메달,NormalMaterial,5,Normal"; + } +} diff --git a/.Lib9c.Tests/Model/PlayerTest.cs b/.Lib9c.Tests/Model/PlayerTest.cs index d735e07e3d..ed7ad2c100 100644 --- a/.Lib9c.Tests/Model/PlayerTest.cs +++ b/.Lib9c.Tests/Model/PlayerTest.cs @@ -170,7 +170,7 @@ public void UseAuraSkill() 100, 100 ); - var skillRow = _tableSheets.SkillSheet[800001]; + var skillRow = _tableSheets.SkillSheet[210011]; var skill = SkillFactory.Get(skillRow, 0, 100, 0, StatType.NONE); var simulator = new StageSimulator( @@ -219,7 +219,7 @@ public void UseAuraBuffWithFood() 100, 100 ); - var skillRow = _tableSheets.SkillSheet[800002]; + var skillRow = _tableSheets.SkillSheet[230005]; var skill = SkillFactory.Get(skillRow, 0, 100, 0, StatType.NONE); var foodRow = _tableSheets.ConsumableItemSheet[201000]; var food = ItemFactory.CreateItemUsable(foodRow, Guid.NewGuid(), 0); @@ -261,7 +261,8 @@ public void UseAuraBuffWithFood() player.Tick(); Assert.NotEmpty(simulator.Log); Assert.Equal(nameof(WaveTurnEnd), simulator.Log.Last().GetType().Name); - Assert.Equal(prevCri + prevCri * 0.2, player.CRI); + // FIXME 0 percent buff not work. + Assert.Equal(prevCri, player.CRI); Assert.Equal(enemyPrevCri / 2, enemy.CRI); } diff --git a/.Lib9c.Tests/Model/Stake/StakeStateUtilsTest.cs b/.Lib9c.Tests/Model/Stake/StakeStateUtilsTest.cs index 26ca0e6912..c5f98be649 100644 --- a/.Lib9c.Tests/Model/Stake/StakeStateUtilsTest.cs +++ b/.Lib9c.Tests/Model/Stake/StakeStateUtilsTest.cs @@ -1,6 +1,7 @@ namespace Lib9c.Tests.Model.Stake { using System; + using Bencodex.Types; using Lib9c.Tests.Action; using Lib9c.Tests.Fixtures.TableCSV; using Lib9c.Tests.Fixtures.TableCSV.Stake; @@ -18,13 +19,19 @@ public class StakeStateUtilsTest public void TryMigrate_Throw_NullReferenceException_When_IAccountDelta_Null() { Assert.Throws(() => - StakeStateUtils.TryMigrate(null, default, out _)); + StakeStateUtils.TryMigrate((IAccount)null, default, out _)); + } + + [Fact] + public void TryMigrate_Return_False_When_IValue_Null() + { + Assert.False(StakeStateUtils.TryMigrate((IValue)null, default, out _)); } [Fact] public void TryMigrate_Return_False_When_Staking_State_Null() { - var state = new MockStateDelta(); + var state = new Account(MockState.Empty); Assert.False(StakeStateUtils.TryMigrate(state, new PrivateKey().ToAddress(), out _)); } @@ -100,7 +107,7 @@ public void TryMigrate_Return_True_With_StakeState( string stakeRegularFixedRewardSheetTableName, string stakeRegularRewardSheetTableName) { - IAccount state = new MockStateDelta(); + IAccount state = new Account(MockState.Empty); state = state.SetState( Addresses.GameConfig, new GameConfigState(GameConfigSheetFixtures.Default).Serialize()); @@ -132,7 +139,7 @@ public void TryMigrate_Return_True_With_StakeStateV2( long startedBlockIndex, long? receivedBlockIndex) { - IAccount state = new MockStateDelta(); + IAccount state = new Account(MockState.Empty); state = state.SetState( Addresses.GameConfig, new GameConfigState(GameConfigSheetFixtures.Default).Serialize()); diff --git a/.Lib9c.Tests/Policy/BlockPolicyTest.cs b/.Lib9c.Tests/Policy/BlockPolicyTest.cs index 77a0d946fd..5fb6fd1118 100644 --- a/.Lib9c.Tests/Policy/BlockPolicyTest.cs +++ b/.Lib9c.Tests/Policy/BlockPolicyTest.cs @@ -65,7 +65,7 @@ public void ValidateNextBlockTx() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: new[] { new BlockRenderer() } @@ -175,7 +175,7 @@ public void ValidateNextBlockTx_Mead() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: new[] { new BlockRenderer() } @@ -263,7 +263,7 @@ public void BlockCommitFromNonValidator() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: new[] { new BlockRenderer() } @@ -317,7 +317,7 @@ public void MustNotIncludeBlockActionAtTransaction() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: actionLoader ), renderers: new[] { new BlockRenderer() } @@ -370,7 +370,7 @@ public void EarnMiningGoldWhenSuccessMining() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: new[] { new BlockRenderer() } @@ -419,7 +419,7 @@ public void ValidateNextBlockWithManyTransactions() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ) ); @@ -520,7 +520,7 @@ public void ValidateNextBlockWithManyTransactionsPerSigner() genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ) ); diff --git a/.Lib9c.Tests/TableSheets.cs b/.Lib9c.Tests/TableSheets.cs index ec04b95c82..dcc3ee435f 100644 --- a/.Lib9c.Tests/TableSheets.cs +++ b/.Lib9c.Tests/TableSheets.cs @@ -14,7 +14,7 @@ namespace Lib9c.Tests public class TableSheets { - public TableSheets(Dictionary sheets, bool ignoreFailedGetProperty = false) + public TableSheets(Dictionary sheets, bool ignoreFailedGetProperty = true) { foreach (var (key, value) in sheets) { diff --git a/.Lib9c.Tests/TestHelper/BlockChainHelper.cs b/.Lib9c.Tests/TestHelper/BlockChainHelper.cs index 0460d32076..eddde7d10d 100644 --- a/.Lib9c.Tests/TestHelper/BlockChainHelper.cs +++ b/.Lib9c.Tests/TestHelper/BlockChainHelper.cs @@ -8,6 +8,7 @@ namespace Lib9c.Tests.TestHelper using Lib9c.Renderers; using Lib9c.Tests.Action; using Libplanet.Action; + using Libplanet.Action.State; using Libplanet.Blockchain; using Libplanet.Blockchain.Policies; using Libplanet.Crypto; @@ -46,7 +47,7 @@ public static BlockChain MakeBlockChain( genesis, new ActionEvaluator( policyBlockActionGetter: _ => policy.BlockAction, - blockChainStates: new BlockChainStates(store, stateStore), + stateStore: stateStore, actionTypeLoader: new NCActionLoader() ), renderers: blockRenderers); @@ -97,7 +98,7 @@ public static MakeInitialStateResult MakeInitialState() var sheets = TableSheetsImporter.ImportSheets(); var weeklyArenaAddress = WeeklyArenaState.DeriveAddress(0); var context = new ActionContext(); - var initialState = new Tests.Action.MockStateDelta() + var initialState = new Account(MockState.Empty) .SetState(GoldCurrencyState.Address, goldCurrencyState.Serialize()) .SetState( Addresses.GoldDistribution, @@ -156,7 +157,7 @@ public static MakeInitialStateResult MakeInitialState() { BlockIndex = 0, PreviousState = initialState, - Random = new TestRandom(), + RandomSeed = 0, Rehearsal = false, }); diff --git a/.Lib9c.Tests/Util/InitializeUtil.cs b/.Lib9c.Tests/Util/InitializeUtil.cs index 0ba59e18b8..54e0d70f74 100644 --- a/.Lib9c.Tests/Util/InitializeUtil.cs +++ b/.Lib9c.Tests/Util/InitializeUtil.cs @@ -28,7 +28,7 @@ IAccount initialStatesWithAvatarStateV2 { adminAddr ??= new PrivateKey().ToAddress(); var context = new ActionContext(); - var states = new MockStateDelta().SetState( + var states = new Account(MockState.Empty).SetState( Addresses.Admin, new AdminState(adminAddr.Value, long.MaxValue).Serialize()); @@ -84,7 +84,7 @@ IAccount initialStatesWithAvatarStateV2 initialStatesWithAvatarStateV2); } - private static (IAccount states, Dictionary sheets) + public static (IAccount states, Dictionary sheets) InitializeTableSheets( IAccount states, bool isDevEx = false, diff --git a/.Lib9c.Tools/SubCommand/Market.cs b/.Lib9c.Tools/SubCommand/Market.cs index 89b2b7cb0b..ca680b55da 100644 --- a/.Lib9c.Tools/SubCommand/Market.cs +++ b/.Lib9c.Tools/SubCommand/Market.cs @@ -102,7 +102,7 @@ public void Query( .Reverse() .Where(tx => includeFails || !(chain.GetTxExecution(block.Hash, tx.Id) is { } e) || - e is TxSuccess) + !e.Fail) .SelectMany(tx => tx.Actions is { } actions ? actions.Reverse().Select(a => (tx, (ActionBase)actionLoader.LoadAction(block.Index, a))) : Enumerable.Empty<(Transaction, ActionBase)>()); diff --git a/.Lib9c.Tools/SubCommand/State.cs b/.Lib9c.Tools/SubCommand/State.cs index fa09f90e33..b5349186cd 100644 --- a/.Lib9c.Tools/SubCommand/State.cs +++ b/.Lib9c.Tools/SubCommand/State.cs @@ -115,41 +115,27 @@ IStateStore stateStore block.Index, block.Hash ); - IReadOnlyList delta; + var actionLoader = TypedActionLoader.Create( typeof(ActionBase).Assembly, typeof(ActionBase)); var actionEvaluator = new ActionEvaluator( _ => policy.BlockAction, - new BlockChainStates(store, stateStore), + stateStore, actionLoader); HashDigest stateRootHash = block.Index < 1 ? BlockChain.DetermineGenesisStateRootHash( actionEvaluator, preEvalBlock, - out delta) + out _) : chain.DetermineBlockStateRootHash( preEvalBlock, - out delta); + out _); DateTimeOffset now = DateTimeOffset.Now; if (invalidStateRootHashBlock is null && !stateRootHash.Equals(block.StateRootHash)) { - string blockDump = DumpBencodexToFile( - block.MarshalBlock(), - $"block_{block.Index}_{block.Hash}" - ); - string deltaDump = DumpBencodexToFile( - new Dictionary(GetTotalDelta( - delta, - ToStateKey, - ToFungibleAssetKey, - ToTotalSupplyKey, - ValidatorSetKey)), - $"delta_{block.Index}_{block.Hash}" - ); string message = $"Unexpected state root hash for block #{block.Index} {block.Hash}.\n" + - $" Expected: {block.StateRootHash}\n Actual: {stateRootHash}\n" + - $" Block file: {blockDump}\n Evaluated delta file: {deltaDump}\n"; + $" Expected: {block.StateRootHash}\n Actual: {stateRootHash}\n"; if (!bypassStateRootHashCheck) { throw new CommandExitedException(message, 1); diff --git a/.Libplanet b/.Libplanet index 7fbe52e2b3..b13ef31553 160000 --- a/.Libplanet +++ b/.Libplanet @@ -1 +1 @@ -Subproject commit 7fbe52e2b3351d4811ecc6da2a09a2f45f4aabeb +Subproject commit b13ef3155389100c218a045fbdc3051e23e3c669 diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents.Tests/ActionEvaluationSerializerTest.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents.Tests/ActionEvaluationSerializerTest.cs index a10649ffe8..dd53890950 100644 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents.Tests/ActionEvaluationSerializerTest.cs +++ b/.Libplanet.Extensions.ActionEvaluatorCommonComponents.Tests/ActionEvaluationSerializerTest.cs @@ -1,6 +1,8 @@ using System.Collections.Immutable; +using System.Security.Cryptography; using Bencodex.Types; using Libplanet.Action; +using Libplanet.Common; using Libplanet.Crypto; namespace Libplanet.Extensions.ActionEvaluatorCommonComponents.Tests; @@ -11,39 +13,45 @@ public class ActionEvaluationSerializerTest public void Serialization() { var addresses = Enumerable.Repeat(0, 4).Select(_ => new PrivateKey().ToAddress()).ToImmutableList(); - AccountStateDelta outputStates = (AccountStateDelta)new AccountStateDelta() - .SetState(addresses[0], Null.Value) - .SetState(addresses[1], (Text)"foo") - .SetState(addresses[2], new List((Text)"bar")); - var previousStates = new AccountStateDelta(); + var random = new System.Random(); + var buffer = new byte[HashDigest.Size]; + random.NextBytes(buffer); + var prevState = new HashDigest(buffer); + random.NextBytes(buffer); + var outputState = new HashDigest(buffer); - var actionEvaluation = new ActionEvaluation( - Null.Value, - new ActionContext(null, - addresses[0], + var committed = new CommittedActionEvaluation( + action: Null.Value, + inputContext: new CommittedActionContext( + signer: addresses[0], + txId: null, + miner: addresses[1], + blockIndex: 0, + blockProtocolVersion: 0, + rehearsal: false, + previousState: prevState, + randomSeed: 123, + blockAction: true), + outputState: outputState, + exception: new UnexpectedlyTerminatedActionException( + "", null, - addresses[1], - 0, - 0, - false, - previousStates, - new Random(123), null, - true), - outputStates, - new Libplanet.Action.UnexpectedlyTerminatedActionException("", null, null, null, null, new NullAction(), null)); - var serialized = ActionEvaluationMarshaller.Serialize(actionEvaluation); + null, + null, + new NullAction(), + new Exception())); + var serialized = ActionEvaluationMarshaller.Serialize(committed); var deserialized = ActionEvaluationMarshaller.Deserialize(serialized); Assert.Equal(Null.Value, deserialized.Action); - Assert.Equal(123, deserialized.InputContext.Random.Seed); + Assert.Equal(123, deserialized.InputContext.RandomSeed); Assert.Equal(0, deserialized.InputContext.BlockIndex); Assert.Equal(0, deserialized.InputContext.BlockProtocolVersion); Assert.Equal(addresses[0], deserialized.InputContext.Signer); Assert.Equal(addresses[1], deserialized.InputContext.Miner); - Assert.Equal(Null.Value, deserialized.OutputState.GetState(addresses[0])); - Assert.Equal((Text)"foo", deserialized.OutputState.GetState(addresses[1])); - Assert.Equal(new List((Text)"bar"), deserialized.OutputState.GetState(addresses[2])); + Assert.Equal(prevState, deserialized.InputContext.PreviousState); + Assert.Equal(outputState, deserialized.OutputState); } } diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountDelta.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountDelta.cs deleted file mode 100644 index 0f9ed087b5..0000000000 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountDelta.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System.Collections.Immutable; -using System.Numerics; -using Bencodex.Types; -using Libplanet.Crypto; -using Libplanet.Types.Assets; -using Libplanet.Types.Consensus; -using Libplanet.Action.State; - -namespace Libplanet.Extensions.ActionEvaluatorCommonComponents -{ - public class AccountDelta : IAccountDelta - { - public AccountDelta() - { - States = ImmutableDictionary.Empty; - Fungibles = ImmutableDictionary<(Address, Currency), BigInteger>.Empty; - TotalSupplies = ImmutableDictionary.Empty; - ValidatorSet = null; - } - - public AccountDelta( - IImmutableDictionary statesDelta, - IImmutableDictionary<(Address, Currency), BigInteger> fungiblesDelta, - IImmutableDictionary totalSuppliesDelta, - ValidatorSet? validatorSetDelta) - { - States = statesDelta; - Fungibles = fungiblesDelta; - TotalSupplies = totalSuppliesDelta; - ValidatorSet = validatorSetDelta; - } - - /// - public IImmutableSet
UpdatedAddresses => - StateUpdatedAddresses.Union(FungibleUpdatedAddresses); - - /// - public IImmutableSet
StateUpdatedAddresses => - States.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary States { get; } - - /// - public IImmutableSet
FungibleUpdatedAddresses => - Fungibles.Keys.Select(pair => pair.Item1).ToImmutableHashSet(); - - /// - public IImmutableSet<(Address, Currency)> UpdatedFungibleAssets => - Fungibles.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary<(Address, Currency), BigInteger> Fungibles { get; } - - /// - public IImmutableSet UpdatedTotalSupplyCurrencies => - TotalSupplies.Keys.ToImmutableHashSet(); - - /// - public IImmutableDictionary TotalSupplies { get; } - - /// - public ValidatorSet? ValidatorSet { get; } - } -} diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDelta.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDelta.cs deleted file mode 100644 index da9f57dce7..0000000000 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDelta.cs +++ /dev/null @@ -1,313 +0,0 @@ -using System.Collections.Immutable; -using System.Numerics; -using Bencodex; -using Bencodex.Types; -using Libplanet.Action; -using Libplanet.Action.State; -using Libplanet.Crypto; -using Libplanet.Store.Trie; -using Libplanet.Types.Assets; -using Libplanet.Types.Consensus; - -namespace Libplanet.Extensions.ActionEvaluatorCommonComponents; - -public class AccountStateDelta : IAccount -{ - private IImmutableDictionary _states; - private IImmutableDictionary<(Address, Currency), BigInteger> _fungibles; - private IImmutableDictionary _totalSupplies; - private ValidatorSet? _validatorSet; - private IAccountDelta _delta; - - public IAccountState BaseState { get; set; } - - public IImmutableSet
UpdatedAddresses => _delta.UpdatedAddresses; - - public IImmutableSet
StateUpdatedAddresses => _delta.StateUpdatedAddresses; - - public IImmutableSet<(Address, Currency)> UpdatedFungibleAssets => _delta.UpdatedFungibleAssets; - -#pragma warning disable LAA1002 - public IImmutableSet<(Address, Currency)> TotalUpdatedFungibleAssets { get; } -#pragma warning restore LAA1002 - - public IImmutableSet UpdatedTotalSupplyCurrencies => _delta.UpdatedTotalSupplyCurrencies; - - public AccountStateDelta() - : this( - ImmutableDictionary.Empty, - ImmutableDictionary<(Address, Currency), BigInteger>.Empty, - ImmutableDictionary.Empty, - null) - { - } - - public AccountStateDelta( - IImmutableDictionary states, - IImmutableDictionary<(Address, Currency), BigInteger> fungibles, - IImmutableDictionary totalSupplies, - ValidatorSet? validatorSet - ) - { - _delta = new AccountDelta( - states, - fungibles, - totalSupplies, - validatorSet); - _states = states; - _fungibles = fungibles; - _totalSupplies = totalSupplies; - _validatorSet = validatorSet; - } - - public AccountStateDelta(Dictionary states, List fungibles, List totalSupplies, IValue validatorSet) - { - // This assumes `states` consists of only Binary keys: - _states = states - .ToImmutableDictionary( - kv => new Address(((Binary)kv.Key).ByteArray), - kv => kv.Value); - - _fungibles = fungibles - .Cast() - .Select(dict => - new KeyValuePair<(Address, Currency), BigInteger>( - ( - new Address(((Binary)dict["address"]).ByteArray), - new Currency(dict["currency"]) - ), - ((Integer)dict["amount"]).Value - )) - .ToImmutableDictionary(); - - // This assumes `totalSupplies` consists of only Binary keys: - _totalSupplies = totalSupplies - .Cast() - .Select(dict => - new KeyValuePair( - new Currency(dict["currency"]), - new BigInteger((Integer)dict["amount"]))) - .ToImmutableDictionary(); - - _validatorSet = validatorSet is Null - ? null - : new ValidatorSet(validatorSet); - - _delta = new AccountDelta( - _states, - _fungibles, - _totalSupplies, - _validatorSet); - } - - public AccountStateDelta(IValue serialized) - : this((Dictionary)serialized) - { - } - - public AccountStateDelta(Dictionary dict) - : this( - (Dictionary)dict["states"], - (List)dict["balances"], - (List)dict["totalSupplies"], - dict["validatorSet"]) - { - } - - public AccountStateDelta(byte[] bytes) - : this((Dictionary)new Codec().Decode(bytes)) - { - } - - public ITrie Trie => throw new NotSupportedException(); - - public IAccountDelta Delta => _delta; - - public IValue? GetState(Address address) => - _states.ContainsKey(address) - ? _states[address] - : BaseState.GetState(address); - - public IReadOnlyList GetStates(IReadOnlyList
addresses) => - addresses.Select(GetState).ToArray(); - - public IAccount SetState(Address address, IValue state) => - new AccountStateDelta(_states.SetItem(address, state), _fungibles, _totalSupplies, _validatorSet); - public FungibleAssetValue GetBalance(Address address, Currency currency) - { - if (!_fungibles.TryGetValue((address, currency), out BigInteger rawValue)) - { - return BaseState.GetBalance(address, currency); - } - - return FungibleAssetValue.FromRawValue(currency, rawValue); - } - - public FungibleAssetValue GetTotalSupply(Currency currency) - { - if (!currency.TotalSupplyTrackable) - { - var msg = - $"The total supply value of the currency {currency} is not trackable" - + " because it is a legacy untracked currency which might have been" - + " established before the introduction of total supply tracking support."; - throw new TotalSupplyNotTrackableException(msg, currency); - } - - // Return dirty state if it exists. - if (_totalSupplies.TryGetValue(currency, out var totalSupplyValue)) - { - return FungibleAssetValue.FromRawValue(currency, totalSupplyValue); - } - - return BaseState.GetTotalSupply(currency); - } - - public IAccount MintAsset( - IActionContext context, Address recipient, FungibleAssetValue value) - { - // FIXME: 트랜잭션 서명자를 알아내 currency.AllowsToMint() 확인해서 CurrencyPermissionException - // 던지는 처리를 해야하는데 여기서 트랜잭션 서명자를 무슨 수로 가져올지 잘 모르겠음. - - var currency = value.Currency; - - if (value <= currency * 0) - { - throw new ArgumentOutOfRangeException(nameof(value)); - } - - var nextAmount = GetBalance(recipient, value.Currency) + value; - - if (currency.TotalSupplyTrackable) - { - var currentTotalSupply = GetTotalSupply(currency); - if (currency.MaximumSupply < currentTotalSupply + value) - { - var msg = $"The amount {value} attempted to be minted added to the current" - + $" total supply of {currentTotalSupply} exceeds the" - + $" maximum allowed supply of {currency.MaximumSupply}."; - throw new SupplyOverflowException(msg, value); - } - - return new AccountStateDelta( - _states, - _fungibles.SetItem( - (recipient, value.Currency), - nextAmount.RawValue - ), - _totalSupplies.SetItem(currency, (currentTotalSupply + value).RawValue), - _validatorSet - ) - { - BaseState = BaseState, - }; - } - - return new AccountStateDelta( - _states, - _fungibles.SetItem( - (recipient, value.Currency), - nextAmount.RawValue - ), - _totalSupplies, - _validatorSet - ) - { - BaseState = BaseState, - }; - } - - public IAccount TransferAsset( - IActionContext context, - Address sender, - Address recipient, - FungibleAssetValue value, - bool allowNegativeBalance = false) - { - if (value.Sign <= 0) - { - throw new ArgumentOutOfRangeException(nameof(value)); - } - - FungibleAssetValue senderBalance = GetBalance(sender, value.Currency); - if (senderBalance < value) - { - throw new InsufficientBalanceException( - $"There is no sufficient balance for {sender}: {senderBalance} < {value}", - sender, - senderBalance - ); - } - - Currency currency = value.Currency; - FungibleAssetValue senderRemains = senderBalance - value; - FungibleAssetValue recipientRemains = GetBalance(recipient, currency) + value; - var balances = _fungibles - .SetItem((sender, currency), senderRemains.RawValue) - .SetItem((recipient, currency), recipientRemains.RawValue); - return new AccountStateDelta(_states, balances, _totalSupplies, _validatorSet) - { - BaseState = BaseState, - }; - } - - public IAccount BurnAsset( - IActionContext context, Address owner, FungibleAssetValue value) - { - // FIXME: 트랜잭션 서명자를 알아내 currency.AllowsToMint() 확인해서 CurrencyPermissionException - // 던지는 처리를 해야하는데 여기서 트랜잭션 서명자를 무슨 수로 가져올지 잘 모르겠음. - - var currency = value.Currency; - - if (value <= currency * 0) - { - throw new ArgumentOutOfRangeException(nameof(value)); - } - - FungibleAssetValue balance = GetBalance(owner, currency); - if (balance < value) - { - throw new InsufficientBalanceException( - $"There is no sufficient balance for {owner}: {balance} < {value}", - owner, - value - ); - } - - FungibleAssetValue nextValue = balance - value; - return new AccountStateDelta( - _states, - _fungibles.SetItem( - (owner, currency), - nextValue.RawValue - ), - currency.TotalSupplyTrackable - ? _totalSupplies.SetItem( - currency, - (GetTotalSupply(currency) - value).RawValue) - : _totalSupplies, - _validatorSet - ) - { - BaseState = BaseState, - }; - } - - public ValidatorSet GetValidatorSet() - { - return _validatorSet ?? BaseState.GetValidatorSet(); - } - - public IAccount SetValidator(Validator validator) - { - return new AccountStateDelta( - _states, - _fungibles, - _totalSupplies, - GetValidatorSet().Update(validator) - ) - { - BaseState = BaseState, - }; - } -} diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDeltaMarshaller.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDeltaMarshaller.cs deleted file mode 100644 index ac9a354ca3..0000000000 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/AccountStateDeltaMarshaller.cs +++ /dev/null @@ -1,60 +0,0 @@ -using Bencodex; -using Bencodex.Types; -using Libplanet.Action.State; - -namespace Libplanet.Extensions.ActionEvaluatorCommonComponents; - -public static class AccountStateDeltaMarshaller -{ - private static readonly Codec Codec = new Codec(); - - public static byte[] Serialize(this IAccount value) - { - return Codec.Encode(Marshal(value)); - } - - public static IEnumerable Marshal(IEnumerable stateDeltas) - { - foreach (var stateDelta in stateDeltas) - { - var bdict = Marshal(stateDelta); - yield return bdict; - } - } - - public static Dictionary Marshal(IAccount stateDelta) - { - var state = new Dictionary(stateDelta.Delta.States.Select( - kv => new KeyValuePair( - new Binary(kv.Key.ByteArray), - kv.Value))); - var balance = new List(stateDelta.Delta.Fungibles.Select( - kv => Dictionary.Empty - .Add("address", new Binary(kv.Key.Item1.ByteArray)) - .Add("currency", kv.Key.Item2.Serialize()) - .Add("amount", new Integer(kv.Value)))); - var totalSupply = new List(stateDelta.Delta.TotalSupplies.Select( - kv => Dictionary.Empty - .Add("currency", kv.Key.Serialize()) - .Add("amount", new Integer(kv.Value)))); - var bdict = Dictionary.Empty - .Add("states", state) - .Add("balances", balance) - .Add("totalSupplies", totalSupply) - .Add("validatorSet", stateDelta.Delta.ValidatorSet is { } validatorSet - ? validatorSet.Bencoded - : Null.Value); - return bdict; - } - - public static AccountStateDelta Unmarshal(IValue marshalled) - { - return new AccountStateDelta(marshalled); - } - - public static AccountStateDelta Deserialize(byte[] serialized) - { - var decoded = Codec.Decode(serialized); - return Unmarshal(decoded); - } -} diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContext.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContext.cs deleted file mode 100644 index 9f87fc0d81..0000000000 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContext.cs +++ /dev/null @@ -1,81 +0,0 @@ -using System.Security.Cryptography; -using Libplanet.Action; -using Libplanet.Common; -using Libplanet.Crypto; -using Libplanet.Types.Blocks; -using Libplanet.Action.State; -using Libplanet.Types.Tx; - -namespace Libplanet.Extensions.ActionEvaluatorCommonComponents; - -public class ActionContext : IActionContext -{ - public ActionContext( - BlockHash? genesisHash, - Address signer, - TxId? txId, - Address miner, - long blockIndex, - int blockProtocolVersion, - bool rehearsal, - AccountStateDelta previousState, - IRandom random, - HashDigest? previousStateRootHash, - bool blockAction) - { - GenesisHash = genesisHash; - Signer = signer; - TxId = txId; - Miner = miner; - BlockIndex = blockIndex; - BlockProtocolVersion = blockProtocolVersion; - Rehearsal = rehearsal; - PreviousState = previousState; - Random = random; - PreviousStateRootHash = previousStateRootHash; - BlockAction = blockAction; - } - - public BlockHash? GenesisHash { get; } - public Address Signer { get; init; } - public TxId? TxId { get; } - public Address Miner { get; init; } - public long BlockIndex { get; init; } - public int BlockProtocolVersion { get; init; } - public bool Rehearsal { get; init; } - public AccountStateDelta PreviousState { get; init; } - IAccount IActionContext.PreviousState => PreviousState; - public IRandom Random { get; init; } - public HashDigest? PreviousStateRootHash { get; init; } - public bool BlockAction { get; init; } - - public void PutLog(string log) - { - throw new NotImplementedException(); - } - - public void UseGas(long gas) - { - throw new NotImplementedException(); - } - - public IActionContext GetUnconsumedContext() - { - return new ActionContext( - GenesisHash, - Signer, - TxId, - Miner, - BlockIndex, - BlockProtocolVersion, - Rehearsal, - PreviousState, - new Random(Random.Seed), - PreviousStateRootHash, - BlockAction); - } - - public long GasUsed() => 0; - - public long GasLimit() => 0; -} diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContextMarshaller.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContextMarshaller.cs index 5444f70a72..d9cf9b6ea3 100644 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContextMarshaller.cs +++ b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionContextMarshaller.cs @@ -14,22 +14,22 @@ public static class ActionContextMarshaller { private static readonly Codec Codec = new Codec(); - public static byte[] Serialize(this IActionContext actionContext) + public static byte[] Serialize(this ICommittedActionContext actionContext) { return Codec.Encode(Marshal(actionContext)); } - public static Dictionary Marshal(this IActionContext actionContext) + public static Dictionary Marshal(this ICommittedActionContext actionContext) { var dictionary = Bencodex.Types.Dictionary.Empty - .Add("block_action", actionContext.BlockAction) + .Add("signer", actionContext.Signer.ToHex()) .Add("miner", actionContext.Miner.ToHex()) - .Add("rehearsal", actionContext.Rehearsal) .Add("block_index", actionContext.BlockIndex) .Add("block_protocol_version", actionContext.BlockProtocolVersion) - .Add("random_seed", actionContext.Random.Seed) - .Add("signer", actionContext.Signer.ToHex()) - .Add("previous_states", AccountStateDeltaMarshaller.Marshal(actionContext.PreviousState)); + .Add("rehearsal", actionContext.Rehearsal) + .Add("previous_states", actionContext.PreviousState.ByteArray) + .Add("random_seed", actionContext.RandomSeed) + .Add("block_action", actionContext.BlockAction); if (actionContext.TxId is { } txId) { @@ -39,32 +39,25 @@ public static Dictionary Marshal(this IActionContext actionContext) return dictionary; } - public static ActionContext Unmarshal(Dictionary dictionary) + public static ICommittedActionContext Unmarshal(Dictionary dictionary) { - return new ActionContext( - genesisHash: dictionary.TryGetValue((Text)"genesis_hash", out IValue genesisHashValue) && - genesisHashValue is Binary genesisHashBinaryValue - ? new BlockHash(genesisHashBinaryValue.ByteArray) - : null, - blockIndex: (Integer)dictionary["block_index"], - blockProtocolVersion: (Integer)dictionary["block_protocol_version"], + return new CommittedActionContext( signer: new Address(((Text)dictionary["signer"]).Value), txId: dictionary.TryGetValue((Text)"tx_id", out IValue txIdValue) && txIdValue is Binary txIdBinaryValue ? new TxId(txIdBinaryValue.ByteArray) : null, - blockAction: (Boolean)dictionary["block_action"], miner: new Address(((Text)dictionary["miner"]).Value), + blockIndex: (Integer)dictionary["block_index"], + blockProtocolVersion: (Integer)dictionary["block_protocol_version"], rehearsal: (Boolean)dictionary["rehearsal"], - previousStateRootHash: dictionary.ContainsKey("previous_state_root_hash") - ? new HashDigest(((Binary)dictionary["previous_state_root_hash"]).ByteArray) - : null, - previousState: AccountStateDeltaMarshaller.Unmarshal(dictionary["previous_states"]), - random: new Random((Integer)dictionary["random_seed"]) + previousState: new HashDigest(((Binary)dictionary["previous_states"]).ByteArray), + randomSeed: (Integer)dictionary["random_seed"], + blockAction: (Boolean)dictionary["block_action"] ); } - public static ActionContext Deserialize(byte[] serialized) + public static ICommittedActionContext Deserialize(byte[] serialized) { var decoded = Codec.Decode(serialized); if (!(decoded is Dictionary dictionary)) diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluation.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluation.cs deleted file mode 100644 index fe040f5524..0000000000 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluation.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Bencodex.Types; -using Libplanet.Action; -using Libplanet.Action.State; - -namespace Libplanet.Extensions.ActionEvaluatorCommonComponents; - -public class ActionEvaluation : IActionEvaluation -{ - public ActionEvaluation( - IValue action, - ActionContext inputContext, - AccountStateDelta outputState, - Exception? exception) - { - Action = action; - InputContext = inputContext; - OutputState = outputState; - Exception = exception; - } - - public IValue Action { get; } - public ActionContext InputContext { get; } - IActionContext IActionEvaluation.InputContext => InputContext; - public AccountStateDelta OutputState { get; } - IAccount IActionEvaluation.OutputState => OutputState; - public Exception? Exception { get; } -} diff --git a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluationMarshaller.cs b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluationMarshaller.cs index d77199face..79be7c239a 100644 --- a/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluationMarshaller.cs +++ b/.Libplanet.Extensions.ActionEvaluatorCommonComponents/ActionEvaluationMarshaller.cs @@ -1,6 +1,8 @@ +using System.Security.Cryptography; using Bencodex; using Bencodex.Types; using Libplanet.Action; +using Libplanet.Common; namespace Libplanet.Extensions.ActionEvaluatorCommonComponents; @@ -8,51 +10,34 @@ public static class ActionEvaluationMarshaller { private static readonly Codec Codec = new Codec(); - public static byte[] Serialize(this IActionEvaluation actionEvaluation) + public static byte[] Serialize(this ICommittedActionEvaluation actionEvaluation) { return Codec.Encode(Marshal(actionEvaluation)); } - public static IEnumerable Marshal(this IEnumerable actionEvaluations) - { - var actionEvaluationsArray = actionEvaluations.ToArray(); - var outputStates = AccountStateDeltaMarshaller.Marshal(actionEvaluationsArray.Select(aev => aev.OutputState)); - var previousStates = AccountStateDeltaMarshaller.Marshal(actionEvaluationsArray.Select(aev => aev.InputContext.PreviousState)); - foreach (var actionEvaluation in actionEvaluationsArray) - { - yield return Dictionary.Empty - .Add("action", actionEvaluation.Action) - .Add("output_states", AccountStateDeltaMarshaller.Marshal(actionEvaluation.OutputState)) - .Add("input_context", ActionContextMarshaller.Marshal(actionEvaluation.InputContext)) - .Add("exception", actionEvaluation.Exception?.GetType().FullName is { } typeName ? (Text)typeName : Null.Value); - } - } - - public static Dictionary Marshal(this IActionEvaluation actionEvaluation) - { - return Dictionary.Empty + public static Dictionary Marshal(this ICommittedActionEvaluation actionEvaluation) => + Dictionary.Empty .Add("action", actionEvaluation.Action) - .Add("output_states", AccountStateDeltaMarshaller.Marshal(actionEvaluation.OutputState)) - .Add("input_context", ActionContextMarshaller.Marshal(actionEvaluation.InputContext)) + .Add("output_states", actionEvaluation.OutputState.ByteArray) + .Add("input_context", actionEvaluation.InputContext.Marshal()) .Add("exception", actionEvaluation.Exception?.GetType().FullName is { } typeName ? (Text)typeName : Null.Value); - } - public static ActionEvaluation Unmarshal(IValue value) + public static ICommittedActionEvaluation Unmarshal(IValue value) { if (value is not Dictionary dictionary) { throw new ArgumentException(nameof(value)); } - return new ActionEvaluation( + return new CommittedActionEvaluation( dictionary["action"], ActionContextMarshaller.Unmarshal((Dictionary)dictionary["input_context"]), - AccountStateDeltaMarshaller.Unmarshal(dictionary["output_states"]), + new HashDigest((Binary)dictionary["output_states"]), dictionary["exception"] is Text typeName ? new Exception(typeName) : null ); } - public static ActionEvaluation Deserialize(byte[] serialized) + public static ICommittedActionEvaluation Deserialize(byte[] serialized) { var decoded = Codec.Decode(serialized); return Unmarshal(decoded); diff --git a/.Libplanet.Extensions.RemoteActionEvaluator/RemoteActionEvaluator.cs b/.Libplanet.Extensions.RemoteActionEvaluator/RemoteActionEvaluator.cs index 1961bd3741..1b2ec2afee 100644 --- a/.Libplanet.Extensions.RemoteActionEvaluator/RemoteActionEvaluator.cs +++ b/.Libplanet.Extensions.RemoteActionEvaluator/RemoteActionEvaluator.cs @@ -1,100 +1,42 @@ using System.Collections.Immutable; -using System.Diagnostics.Contracts; using System.Net.Http.Json; -using Bencodex.Types; +using System.Security.Cryptography; using Lib9c.StateService.Shared; using Libplanet.Action; using Libplanet.Action.Loader; -using Libplanet.Action.State; -using Libplanet.Crypto; -using Libplanet.Types.Assets; using Libplanet.Types.Blocks; -using Libplanet.Types.Consensus; using Libplanet.Extensions.ActionEvaluatorCommonComponents; +using Libplanet.Common; namespace Libplanet.Extensions.RemoteActionEvaluator; public class RemoteActionEvaluator : IActionEvaluator { private readonly Uri _endpoint; - private readonly IBlockChainStates _blockChainStates; - public RemoteActionEvaluator(Uri endpoint, IBlockChainStates blockChainStates) + public RemoteActionEvaluator(Uri endpoint) { _endpoint = endpoint; - _blockChainStates = blockChainStates; } public IActionLoader ActionLoader => throw new NotSupportedException(); - public IReadOnlyList Evaluate(IPreEvaluationBlock block) + public IReadOnlyList Evaluate( + IPreEvaluationBlock block, HashDigest? baseStateRootHash) { using var httpClient = new HttpClient(); var response = httpClient.PostAsJsonAsync(_endpoint, new RemoteEvaluationRequest { PreEvaluationBlock = PreEvaluationBlockMarshaller.Serialize(block), + BaseStateRootHash = baseStateRootHash is null + ? new byte[]{} + : baseStateRootHash.Value.ToByteArray(), }).Result; var evaluationResponse = response.Content.ReadFromJsonAsync().Result; var actionEvaluations = evaluationResponse.Evaluations.Select(ActionEvaluationMarshaller.Deserialize) .ToImmutableList(); - for (var i = 0; i < actionEvaluations.Count; ++i) - { - if (i > 0) - { - actionEvaluations[i].InputContext.PreviousState.BaseState = - actionEvaluations[i - 1].OutputState; - } - else - { - actionEvaluations[i].InputContext.PreviousState.BaseState = - _blockChainStates.GetAccountState(block.PreviousHash); - } - - actionEvaluations[i].OutputState.BaseState = - actionEvaluations[i].InputContext.PreviousState; - } - return actionEvaluations; } - - [Pure] - private static IReadOnlyList NullAccountStateGetter( - IReadOnlyList
addresses - ) => - new IValue?[addresses.Count]; - - [Pure] - private static FungibleAssetValue NullAccountBalanceGetter( - Address address, - Currency currency - ) => - currency * 0; - - [Pure] - private static FungibleAssetValue NullTotalSupplyGetter(Currency currency) - { - if (!currency.TotalSupplyTrackable) - { - throw WithDefaultMessage(currency); - } - - return currency * 0; - } - - [Pure] - private static ValidatorSet NullValidatorSetGetter() - { - return new ValidatorSet(); - } - - private static TotalSupplyNotTrackableException WithDefaultMessage(Currency currency) - { - var msg = - $"The total supply value of the currency {currency} is not trackable because it" - + " is a legacy untracked currency which might have been established before" - + " the introduction of total supply tracking support."; - return new TotalSupplyNotTrackableException(msg, currency); - } } diff --git a/.Libplanet.Extensions.RemoteBlockChainStates/RemoteBlockChainStates.cs b/.Libplanet.Extensions.RemoteBlockChainStates/RemoteBlockChainStates.cs index 2c1ece8925..69b86ca756 100644 --- a/.Libplanet.Extensions.RemoteBlockChainStates/RemoteBlockChainStates.cs +++ b/.Libplanet.Extensions.RemoteBlockChainStates/RemoteBlockChainStates.cs @@ -1,5 +1,7 @@ +using System.Security.Cryptography; using Bencodex.Types; using Libplanet.Action.State; +using Libplanet.Common; using Libplanet.Crypto; using Libplanet.Types.Assets; using Libplanet.Types.Blocks; @@ -39,9 +41,15 @@ public ValidatorSet GetValidatorSet(BlockHash? offset) return new RemoteBlockState(_explorerEndpoint, offset).GetValidatorSet(); } - public IAccountState GetAccountState(BlockHash? offset) + public IAccountState GetAccountState(BlockHash? offset) => + throw new NotImplementedException(); + + public IAccountState GetBlockState(BlockHash? offset) { return new RemoteBlockState(_explorerEndpoint, offset); } + + public IAccountState GetAccountState(HashDigest? hash) => + throw new NotImplementedException(); } } diff --git a/Lib9c.DevExtensions/Action/CreateOrReplaceAvatar.cs b/Lib9c.DevExtensions/Action/CreateOrReplaceAvatar.cs index 0568b185e4..40036f080a 100644 --- a/Lib9c.DevExtensions/Action/CreateOrReplaceAvatar.cs +++ b/Lib9c.DevExtensions/Action/CreateOrReplaceAvatar.cs @@ -372,9 +372,10 @@ public override IAccount Execute(IActionContext context) return context.PreviousState; } + var random = context.GetRandom(); return Execute( context.PreviousState, - context.Random, + random, context.BlockIndex, context.Signer); } diff --git a/Lib9c.DevExtensions/Action/CreateTestbed.cs b/Lib9c.DevExtensions/Action/CreateTestbed.cs index bbad34b416..36b9540021 100644 --- a/Lib9c.DevExtensions/Action/CreateTestbed.cs +++ b/Lib9c.DevExtensions/Action/CreateTestbed.cs @@ -72,10 +72,11 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var sellData = TestbedHelper.LoadData("TestbedSell"); + var random = context.GetRandom(); var addedItemInfos = sellData.Items .Select(item => new TestbedHelper.AddedItemInfo( - context.Random.GenerateRandomGuid(), - context.Random.GenerateRandomGuid())) + random.GenerateRandomGuid(), + random.GenerateRandomGuid())) .ToList(); var agentAddress = _privateKey.PublicKey.ToAddress(); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) skillSheet, materialItemSheet, consumableItemSheet, - context.Random, + random, sellData.Items[i], addedItemInfos[i], avatarState); } diff --git a/Lib9c.DevExtensions/Utils.cs b/Lib9c.DevExtensions/Utils.cs index 163ffbc443..1c84a28486 100644 --- a/Lib9c.DevExtensions/Utils.cs +++ b/Lib9c.DevExtensions/Utils.cs @@ -86,7 +86,7 @@ Guid chainIdValue var actionLoader = new NCDevActionLoader(); ActionEvaluator actionEvaluator = new ActionEvaluator( _ => policy.BlockAction, - blockChainStates, + stateStore, actionLoader); BlockChain chain; diff --git a/Lib9c.MessagePack/Action/NCActionEvaluation.cs b/Lib9c.MessagePack/Action/NCActionEvaluation.cs index 7be6f4de7f..46e4b347d6 100644 --- a/Lib9c.MessagePack/Action/NCActionEvaluation.cs +++ b/Lib9c.MessagePack/Action/NCActionEvaluation.cs @@ -1,11 +1,12 @@ #nullable enable using System; using System.Collections.Generic; +using System.Security.Cryptography; using Bencodex.Types; using Lib9c.Formatters; using Lib9c.Renderers; using Libplanet.Crypto; -using Libplanet.Action.State; +using Libplanet.Common; using MessagePack; namespace Nekoyume.Action @@ -27,16 +28,16 @@ public struct NCActionEvaluation public long BlockIndex { get; set; } [Key(3)] - [MessagePackFormatter(typeof(AccountStateDeltaFormatter))] - public IAccount OutputState { get; set; } + [MessagePackFormatter(typeof(HashDigestFormatter))] + public HashDigest OutputState { get; set; } [Key(4)] [MessagePackFormatter(typeof(ExceptionFormatter))] public Exception? Exception { get; set; } [Key(5)] - [MessagePackFormatter(typeof(AccountStateDeltaFormatter))] - public IAccount PreviousState { get; set; } + [MessagePackFormatter(typeof(HashDigestFormatter))] + public HashDigest PreviousState { get; set; } [Key(6)] public int RandomSeed { get; set; } @@ -50,9 +51,9 @@ public NCActionEvaluation( ActionBase? action, Address signer, long blockIndex, - IAccount outputStates, + HashDigest outputStates, Exception? exception, - IAccount previousStates, + HashDigest previousStates, int randomSeed, Dictionary extra ) diff --git a/Lib9c.MessagePack/Formatters/HashDigestFormatter.cs b/Lib9c.MessagePack/Formatters/HashDigestFormatter.cs new file mode 100644 index 0000000000..55ab3613a5 --- /dev/null +++ b/Lib9c.MessagePack/Formatters/HashDigestFormatter.cs @@ -0,0 +1,35 @@ +using System; +using System.Buffers; +using System.Security.Cryptography; +using Libplanet.Common; +using MessagePack; +using MessagePack.Formatters; + +namespace Lib9c.Formatters +{ + public class HashDigestFormatter : IMessagePackFormatter> + { + public void Serialize( + ref MessagePackWriter writer, + HashDigest value, + MessagePackSerializerOptions options) + { + writer.Write(value.ToByteArray()); + } + + public HashDigest Deserialize( + ref MessagePackReader reader, + MessagePackSerializerOptions options) + { + options.Security.DepthStep(ref reader); + + var bytes = reader.ReadBytes()?.ToArray(); + if (bytes is null) + { + throw new InvalidOperationException(); + } + + return new HashDigest(bytes); + } + } +} diff --git a/Lib9c.Policy/AccessControlService/IAccessControlService.cs b/Lib9c.Policy/AccessControlService/IAccessControlService.cs new file mode 100644 index 0000000000..42e7dc1208 --- /dev/null +++ b/Lib9c.Policy/AccessControlService/IAccessControlService.cs @@ -0,0 +1,9 @@ +using Libplanet.Crypto; + +namespace Nekoyume.Blockchain +{ + public interface IAccessControlService + { + public int? GetTxQuota(Address address); + } +} diff --git a/Lib9c.Policy/NCStagePolicy.cs b/Lib9c.Policy/NCStagePolicy.cs index dac09c7ad1..0dbd00c1f5 100644 --- a/Lib9c.Policy/NCStagePolicy.cs +++ b/Lib9c.Policy/NCStagePolicy.cs @@ -15,31 +15,9 @@ public class NCStagePolicy : IStagePolicy private readonly VolatileStagePolicy _impl; private readonly ConcurrentDictionary> _txs; private readonly int _quotaPerSigner; + private IAccessControlService? _accessControlService; - private static readonly ImmutableHashSet
_bannedAccounts = new[] - { - new Address("de96aa7702a7a1fd18ee0f84a5a0c7a2c28ec840"), - new Address("153281c93274bEB9726A03C33d3F19a8D78ad805"), - new Address("7035AA8B7F9fB5db026fb843CbB21C03dd278502"), - new Address("52393Ea89DF0E58152cbFE673d415159aa7B9dBd"), - new Address("2D1Db6dBF1a013D648Efd16d85B4079dCF88B4CC"), - new Address("dE30E00917B583305f14aD21Eafc70f1b183b779"), - new Address("B892052f1E10bf700143dd9bEcd81E31CD7f7095"), - - new Address("C0a90FC489738A1153F793A3272A91913aF3956b"), - new Address("b8D7bD4394980dcc2579019C39bA6b41cb6424E1"), - new Address("555221D1CEA826C55929b8A559CA929574f7C6B3"), - new Address("B892052f1E10bf700143dd9bEcd81E31CD7f7095"), - // v100351 - new Address("0xd7e1b90dea34108fb2d3a6ac7dbf3f33bae2c77d"), - // v200060 - new Address("3FadCb61827E4B70eBAFAF61E2c02fc2711FBb5A"), - new Address("7655122899Ccd2cC87B38A35D7158c9516504119"), - new Address("3165fda4aAE0362EFFd8Ae6e8674AA49381b4485"), - new Address("CAFC88175f88973d01e6A9479b31eC0beb020b8a"), - }.ToImmutableHashSet(); - - public NCStagePolicy(TimeSpan txLifeTime, int quotaPerSigner) + public NCStagePolicy(TimeSpan txLifeTime, int quotaPerSigner, IAccessControlService? accessControlService = null) { if (quotaPerSigner < 1) { @@ -52,6 +30,8 @@ public NCStagePolicy(TimeSpan txLifeTime, int quotaPerSigner) _impl = (txLifeTime == default) ? new VolatileStagePolicy() : new VolatileStagePolicy(txLifeTime); + + _accessControlService = accessControlService; } public Transaction Get(BlockChain blockChain, TxId id, bool filtered = true) @@ -79,7 +59,16 @@ public IEnumerable Iterate(BlockChain blockChain, bool filtered = t } s.Add(tx); - if (s.Count > _quotaPerSigner) + int txQuotaPerSigner = _quotaPerSigner; + + // update txQuotaPerSigner if ACS returns a value for the signer. + if (_accessControlService?.GetTxQuota(tx.Signer) is { } acsTxQuota) + { + txQuotaPerSigner = acsTxQuota; + } + + + if (s.Count > txQuotaPerSigner) { s.Remove(s.Max); } @@ -97,7 +86,8 @@ public IEnumerable Iterate(BlockChain blockChain, bool filtered = t public bool Stage(BlockChain blockChain, Transaction transaction) { - if (_bannedAccounts.Contains(transaction.Signer)) + if (_accessControlService?.GetTxQuota(transaction.Signer) is { } acsTxQuota + && acsTxQuota == 0) { return false; } diff --git a/Lib9c.Renderers/ActionEvaluation.cs b/Lib9c.Renderers/ActionEvaluation.cs index d081045cc9..43827bc08c 100644 --- a/Lib9c.Renderers/ActionEvaluation.cs +++ b/Lib9c.Renderers/ActionEvaluation.cs @@ -1,7 +1,8 @@ using System; using System.Collections.Generic; +using System.Security.Cryptography; using Bencodex.Types; -using Libplanet.Action.State; +using Libplanet.Common; using Libplanet.Crypto; using Libplanet.Types.Tx; using Nekoyume.Action; @@ -19,11 +20,11 @@ public struct ActionEvaluation public TxId? TxId { get; set; } - public IAccount OutputState { get; set; } + public HashDigest OutputState { get; set; } public Exception? Exception { get; set; } - public IAccount PreviousState { get; set; } + public HashDigest PreviousState { get; set; } public int RandomSeed { get; set; } diff --git a/Lib9c.Renderers/Renderers/ActionRenderer.cs b/Lib9c.Renderers/Renderers/ActionRenderer.cs index f75e210140..d46df38df8 100644 --- a/Lib9c.Renderers/Renderers/ActionRenderer.cs +++ b/Lib9c.Renderers/Renderers/ActionRenderer.cs @@ -1,13 +1,13 @@ using System; -using Libplanet.Crypto; +using System.Security.Cryptography; using Libplanet.Action; using Libplanet.Action.Loader; using Libplanet.Blockchain.Renderers; using Libplanet.Types.Blocks; -using Libplanet.Action.State; using Nekoyume.Action; using Serilog; using Bencodex.Types; +using Libplanet.Common; using Nekoyume.Action.Loader; #if UNITY_EDITOR || UNITY_STANDALONE using UniRx; @@ -33,7 +33,7 @@ public ActionRenderer() _actionLoader = new NCActionLoader(); } - public void RenderAction(IValue action, IActionContext context, IAccount nextStates) => + public void RenderAction(IValue action, ICommittedActionContext context, HashDigest nextState) => ActionRenderSubject.OnNext(new ActionEvaluation { Action = context.BlockAction @@ -42,16 +42,12 @@ public void RenderAction(IValue action, IActionContext context, IAccount nextSta Signer = context.Signer, BlockIndex = context.BlockIndex, TxId = context.TxId, - OutputState = nextStates, + OutputState = nextState, PreviousState = context.PreviousState, - RandomSeed = context.Random.Seed + RandomSeed = context.RandomSeed }); - public void RenderActionError( - IValue action, - IActionContext context, - Exception exception - ) + public void RenderActionError(IValue action, ICommittedActionContext context, Exception exception) { Log.Error(exception, "{action} execution failed.", action); ActionRenderSubject.OnNext(new ActionEvaluation @@ -65,7 +61,7 @@ Exception exception OutputState = context.PreviousState, Exception = exception, PreviousState = context.PreviousState, - RandomSeed = context.Random.Seed + RandomSeed = context.RandomSeed }); } @@ -96,22 +92,5 @@ public IObservable> EveryRender() where T : ActionBase => RandomSeed = eval.RandomSeed, Extra = eval.Extra, }); - - public IObservable> EveryRender(Address updatedAddress) => - ActionRenderSubject - .AsObservable() - .Where(eval => eval.OutputState.Delta.UpdatedAddresses.Contains(updatedAddress)) - .Select(eval => new ActionEvaluation - { - Action = eval.Action, - Signer = eval.Signer, - BlockIndex = eval.BlockIndex, - TxId = eval.TxId, - OutputState = eval.OutputState, - Exception = eval.Exception, - PreviousState = eval.PreviousState, - RandomSeed = eval.RandomSeed, - Extra = eval.Extra, - }); } } diff --git a/Lib9c.Utils/BlockHelper.cs b/Lib9c.Utils/BlockHelper.cs index 4744d0030a..fca6e936f9 100644 --- a/Lib9c.Utils/BlockHelper.cs +++ b/Lib9c.Utils/BlockHelper.cs @@ -100,7 +100,7 @@ public static Block ProposeGenesisBlock( var actionLoader = new NCActionLoader(); var actionEvaluator = new ActionEvaluator( _ => blockAction, - new BlockChainStates(new MemoryStore(), new TrieStateStore(new MemoryKeyValueStore())), + new TrieStateStore(new MemoryKeyValueStore()), actionLoader); return BlockChain.ProposeGenesisBlock( diff --git a/Lib9c/Action/ActionBaseExtensions.cs b/Lib9c/Action/ActionBaseExtensions.cs index 94d5534e24..1eae92aaec 100644 --- a/Lib9c/Action/ActionBaseExtensions.cs +++ b/Lib9c/Action/ActionBaseExtensions.cs @@ -57,7 +57,7 @@ private class RehearsalActionContext : IActionContext public IAccount PreviousState => new AddressTraceStateDelta(); - public IRandom Random => default; + public int RandomSeed => default; public HashDigest? PreviousStateRootHash => default; @@ -68,7 +68,7 @@ public void UseGas(long gas) // pass } - public IActionContext GetUnconsumedContext() => null; + public IRandom GetRandom() => null; public long GasUsed() => 0; diff --git a/Lib9c/Action/AuraSummon.cs b/Lib9c/Action/AuraSummon.cs index fa1c7324ca..f1e6fb614d 100644 --- a/Lib9c/Action/AuraSummon.cs +++ b/Lib9c/Action/AuraSummon.cs @@ -252,6 +252,7 @@ public override IAccount Execute(IActionContext context) ); } + var random = context.GetRandom(); var summonResult = SimulateSummon( addressesHex, agentState, sheets.GetSheet(), @@ -260,7 +261,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), summonRow, SummonCount, - context.Random, context.BlockIndex + random, context.BlockIndex ); foreach (var (recipeId, equipment) in summonResult) diff --git a/Lib9c/Action/BattleArena.cs b/Lib9c/Action/BattleArena.cs index fb363154c0..442af4d66b 100644 --- a/Lib9c/Action/BattleArena.cs +++ b/Lib9c/Action/BattleArena.cs @@ -374,9 +374,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulator(context.Random); + var simulator = new ArenaSimulator(random); var log = simulator.Simulate( myArenaPlayerDigest, enemyArenaPlayerDigest, @@ -391,7 +392,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), myArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena1.cs b/Lib9c/Action/BattleArena1.cs index 02b2b7be7d..1a80652e7e 100644 --- a/Lib9c/Action/BattleArena1.cs +++ b/Lib9c/Action/BattleArena1.cs @@ -260,10 +260,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); - + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.SimulateV1(ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, arenaSheets); if (log.Result.Equals(ArenaLog.ArenaResult.Win)) { @@ -275,7 +275,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena10.cs b/Lib9c/Action/BattleArena10.cs index 61aff896bb..9c40c0467b 100644 --- a/Lib9c/Action/BattleArena10.cs +++ b/Lib9c/Action/BattleArena10.cs @@ -392,9 +392,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV3(context.Random); + var simulator = new ArenaSimulatorV3(random); var log = simulator.Simulate( myArenaPlayerDigest, enemyArenaPlayerDigest, @@ -409,7 +410,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), myArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena11.cs b/Lib9c/Action/BattleArena11.cs index 6de7dba762..817bf1c288 100644 --- a/Lib9c/Action/BattleArena11.cs +++ b/Lib9c/Action/BattleArena11.cs @@ -390,9 +390,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV4(context.Random); + var simulator = new ArenaSimulatorV4(random); var log = simulator.Simulate( myArenaPlayerDigest, enemyArenaPlayerDigest, @@ -407,7 +408,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), myArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena12.cs b/Lib9c/Action/BattleArena12.cs index 46c3d11ddb..6c74329779 100644 --- a/Lib9c/Action/BattleArena12.cs +++ b/Lib9c/Action/BattleArena12.cs @@ -396,9 +396,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulator(context.Random); + var simulator = new ArenaSimulator(random); var log = simulator.Simulate( myArenaPlayerDigest, enemyArenaPlayerDigest, @@ -413,7 +414,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), myArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena13.cs b/Lib9c/Action/BattleArena13.cs index ac9af0d1dc..544b9e0b8f 100644 --- a/Lib9c/Action/BattleArena13.cs +++ b/Lib9c/Action/BattleArena13.cs @@ -91,6 +91,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -392,7 +393,7 @@ public override IAccount Execute(IActionContext context) var rewards = new List(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulator(context.Random); + var simulator = new ArenaSimulator(random); var log = simulator.Simulate( myArenaPlayerDigest, enemyArenaPlayerDigest, @@ -407,7 +408,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), myArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena2.cs b/Lib9c/Action/BattleArena2.cs index a696ca2183..7e2bb48e2c 100644 --- a/Lib9c/Action/BattleArena2.cs +++ b/Lib9c/Action/BattleArena2.cs @@ -279,9 +279,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.Simulate(ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, arenaSheets); if (log.Result.Equals(ArenaLog.ArenaResult.Win)) { @@ -293,7 +294,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena3.cs b/Lib9c/Action/BattleArena3.cs index 7efa6cd096..b0898715c7 100644 --- a/Lib9c/Action/BattleArena3.cs +++ b/Lib9c/Action/BattleArena3.cs @@ -280,9 +280,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.Simulate(ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, arenaSheets); if (log.Result.Equals(ArenaLog.ArenaResult.Win)) { @@ -294,7 +295,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena4.cs b/Lib9c/Action/BattleArena4.cs index 3004ef9249..905012c8f9 100644 --- a/Lib9c/Action/BattleArena4.cs +++ b/Lib9c/Action/BattleArena4.cs @@ -302,9 +302,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.Simulate(ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, arenaSheets); if (log.Result.Equals(ArenaLog.ArenaResult.Win)) { @@ -316,7 +317,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena5.cs b/Lib9c/Action/BattleArena5.cs index d31fe8e723..b68211ba8c 100644 --- a/Lib9c/Action/BattleArena5.cs +++ b/Lib9c/Action/BattleArena5.cs @@ -317,9 +317,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, @@ -334,7 +335,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena6.cs b/Lib9c/Action/BattleArena6.cs index 51e99ae672..5aecca6594 100644 --- a/Lib9c/Action/BattleArena6.cs +++ b/Lib9c/Action/BattleArena6.cs @@ -336,9 +336,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV1(context.Random); + var simulator = new ArenaSimulatorV1(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, @@ -353,7 +354,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena7.cs b/Lib9c/Action/BattleArena7.cs index e88a7d8d57..bc048bfea6 100644 --- a/Lib9c/Action/BattleArena7.cs +++ b/Lib9c/Action/BattleArena7.cs @@ -391,9 +391,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV2(context.Random); + var simulator = new ArenaSimulatorV2(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, @@ -408,7 +409,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena8.cs b/Lib9c/Action/BattleArena8.cs index f1cfe7baf7..0ce0b28816 100644 --- a/Lib9c/Action/BattleArena8.cs +++ b/Lib9c/Action/BattleArena8.cs @@ -397,9 +397,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV3(context.Random); + var simulator = new ArenaSimulatorV3(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, @@ -414,7 +415,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleArena9.cs b/Lib9c/Action/BattleArena9.cs index 951a2041e7..4c92f0fe30 100644 --- a/Lib9c/Action/BattleArena9.cs +++ b/Lib9c/Action/BattleArena9.cs @@ -395,9 +395,10 @@ public override IAccount Execute(IActionContext context) var winCount = 0; var defeatCount = 0; var rewards = new List(); + var random = context.GetRandom(); for (var i = 0; i < ticket; i++) { - var simulator = new ArenaSimulatorV3(context.Random); + var simulator = new ArenaSimulatorV3(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, @@ -412,7 +413,7 @@ public override IAccount Execute(IActionContext context) } var reward = RewardSelector.Select( - context.Random, + random, sheets.GetSheet(), sheets.GetSheet(), ExtraMyArenaPlayerDigest.Level, diff --git a/Lib9c/Action/BattleGrandFinale.cs b/Lib9c/Action/BattleGrandFinale.cs index d556b10dd2..db1abd02d9 100644 --- a/Lib9c/Action/BattleGrandFinale.cs +++ b/Lib9c/Action/BattleGrandFinale.cs @@ -220,7 +220,8 @@ public override IAccount Execute(IActionContext context) ExtraEnemyArenaPlayerDigest = new ArenaPlayerDigest(enemyAvatarState, enemyArenaAvatarState); var arenaSheets = sheets.GetArenaSimulatorSheets(); - var simulator = new ArenaSimulator(context.Random); + var random = context.GetRandom(); + var simulator = new ArenaSimulator(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, diff --git a/Lib9c/Action/BattleGrandFinale1.cs b/Lib9c/Action/BattleGrandFinale1.cs index c94637a562..fb300d663d 100644 --- a/Lib9c/Action/BattleGrandFinale1.cs +++ b/Lib9c/Action/BattleGrandFinale1.cs @@ -220,7 +220,8 @@ public override IAccount Execute(IActionContext context) ExtraEnemyArenaPlayerDigest = new ArenaPlayerDigest(enemyAvatarState, enemyArenaAvatarState); var arenaSheets = sheets.GetArenaSimulatorSheets(); - var simulator = new ArenaSimulatorV2(context.Random); + var random = context.GetRandom(); + var simulator = new ArenaSimulatorV2(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, diff --git a/Lib9c/Action/BattleGrandFinale2.cs b/Lib9c/Action/BattleGrandFinale2.cs index faa1d0ba6a..524c890776 100644 --- a/Lib9c/Action/BattleGrandFinale2.cs +++ b/Lib9c/Action/BattleGrandFinale2.cs @@ -220,7 +220,8 @@ public override IAccount Execute(IActionContext context) ExtraEnemyArenaPlayerDigest = new ArenaPlayerDigest(enemyAvatarState, enemyArenaAvatarState); var arenaSheets = sheets.GetArenaSimulatorSheets(); - var simulator = new ArenaSimulatorV3(context.Random); + var random = context.GetRandom(); + var simulator = new ArenaSimulatorV3(random); var log = simulator.Simulate( ExtraMyArenaPlayerDigest, ExtraEnemyArenaPlayerDigest, diff --git a/Lib9c/Action/Buy0.cs b/Lib9c/Action/Buy0.cs index fd4fe9abae..b3cc8865ee 100644 --- a/Lib9c/Action/Buy0.cs +++ b/Lib9c/Action/Buy0.cs @@ -186,7 +186,8 @@ public override IAccount Execute(IActionContext context) shopItem = shopItem, itemUsable = shopItem.ItemUsable }; - var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); buyerResult.id = buyerMail.id; sellerResult = new Buy7.SellerResult @@ -195,7 +196,7 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; diff --git a/Lib9c/Action/Buy2.cs b/Lib9c/Action/Buy2.cs index accd599930..5d5d7431f6 100644 --- a/Lib9c/Action/Buy2.cs +++ b/Lib9c/Action/Buy2.cs @@ -187,7 +187,8 @@ public override IAccount Execute(IActionContext context) shopItem = shopItem, itemUsable = shopItem.ItemUsable }; - var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); buyerResult.id = buyerMail.id; sellerResult = new Buy7.SellerResult @@ -196,7 +197,7 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; diff --git a/Lib9c/Action/Buy3.cs b/Lib9c/Action/Buy3.cs index a7b71a5f84..4b56538971 100644 --- a/Lib9c/Action/Buy3.cs +++ b/Lib9c/Action/Buy3.cs @@ -186,7 +186,8 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, costume = shopItem.Costume }; - var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); buyerResult.id = buyerMail.id; sellerResult = new Buy7.SellerResult @@ -196,7 +197,7 @@ public override IAccount Execute(IActionContext context) costume = shopItem.Costume, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; diff --git a/Lib9c/Action/Buy4.cs b/Lib9c/Action/Buy4.cs index 69f0df921d..8d9330e420 100644 --- a/Lib9c/Action/Buy4.cs +++ b/Lib9c/Action/Buy4.cs @@ -183,7 +183,8 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, costume = shopItem.Costume }; - var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var buyerMail = new BuyerMail(buyerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); buyerResult.id = buyerMail.id; sellerResult = new Buy7.SellerResult @@ -193,7 +194,7 @@ public override IAccount Execute(IActionContext context) costume = shopItem.Costume, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; diff --git a/Lib9c/Action/Buy5.cs b/Lib9c/Action/Buy5.cs index 2409437daa..82ffe31310 100644 --- a/Lib9c/Action/Buy5.cs +++ b/Lib9c/Action/Buy5.cs @@ -114,6 +114,7 @@ public override IAccount Execute(IActionContext context) buyerMultipleResult = new Buy7.BuyerMultipleResult(); sellerMultipleResult = new Buy7.SellerMultipleResult(); + var random = ctx.GetRandom(); foreach (var purchaseInfo in purchaseInfos) { Buy7.PurchaseResult purchaseResult = new Buy7.PurchaseResult(purchaseInfo.productId); @@ -251,7 +252,7 @@ public override IAccount Execute(IActionContext context) purchaseResult.shopItem = shopItem; purchaseResult.itemUsable = shopItem.ItemUsable; purchaseResult.costume = shopItem.Costume; - var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); purchaseResult.id = buyerMail.id; @@ -262,7 +263,7 @@ public override IAccount Execute(IActionContext context) costume = shopItem.Costume, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; sellerResults.Add(sellerResult); diff --git a/Lib9c/Action/Buy6.cs b/Lib9c/Action/Buy6.cs index 8ef537ceec..d9bdcf7969 100644 --- a/Lib9c/Action/Buy6.cs +++ b/Lib9c/Action/Buy6.cs @@ -114,6 +114,7 @@ public override IAccount Execute(IActionContext context) buyerMultipleResult = new Buy7.BuyerMultipleResult(); sellerMultipleResult = new Buy7.SellerMultipleResult(); + var random = ctx.GetRandom(); foreach (var purchaseInfo in purchaseInfos) { Buy7.PurchaseResult purchaseResult = new Buy7.PurchaseResult(purchaseInfo.productId); @@ -277,7 +278,7 @@ public override IAccount Execute(IActionContext context) purchaseResult.costume = shopItem.Costume; purchaseResult.tradableFungibleItem = shopItem.TradableFungibleItem; purchaseResult.tradableFungibleItemCount = shopItem.TradableFungibleItemCount; - var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); purchaseResult.id = buyerMail.id; @@ -290,7 +291,7 @@ public override IAccount Execute(IActionContext context) tradableFungibleItemCount = shopItem.TradableFungibleItemCount, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; sellerResults.Add(sellerResult); diff --git a/Lib9c/Action/Buy7.cs b/Lib9c/Action/Buy7.cs index 43ddac2274..b61f3b955b 100644 --- a/Lib9c/Action/Buy7.cs +++ b/Lib9c/Action/Buy7.cs @@ -253,6 +253,7 @@ public override IAccount Execute(IActionContext context) buyerMultipleResult = new BuyerMultipleResult(); sellerMultipleResult = new SellerMultipleResult(); + var random = ctx.GetRandom(); foreach (var purchaseInfo in purchaseInfos) { PurchaseResult purchaseResult = new PurchaseResult(purchaseInfo.productId); @@ -425,7 +426,7 @@ public override IAccount Execute(IActionContext context) purchaseResult.costume = shopItem.Costume; purchaseResult.tradableFungibleItem = shopItem.TradableFungibleItem; purchaseResult.tradableFungibleItemCount = shopItem.TradableFungibleItemCount; - var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); purchaseResult.id = buyerMail.id; @@ -438,7 +439,7 @@ public override IAccount Execute(IActionContext context) tradableFungibleItemCount = shopItem.TradableFungibleItemCount, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResult.id = sellerMail.id; sellerResults.Add(sellerResult); diff --git a/Lib9c/Action/BuyMultiple.cs b/Lib9c/Action/BuyMultiple.cs index 15e53d52b5..cbcdcec2bb 100644 --- a/Lib9c/Action/BuyMultiple.cs +++ b/Lib9c/Action/BuyMultiple.cs @@ -306,6 +306,7 @@ public override IAccount Execute(IActionContext context) var sellerResults = new List(); var materialSheet = states.GetSheet(); + var random = ctx.GetRandom(); foreach (var productInfo in purchaseInfos) { if (productInfo is null) @@ -387,7 +388,7 @@ public override IAccount Execute(IActionContext context) productDict = (Dictionary)productDict.Remove(productIdSerialized); shopStateDict = shopStateDict.SetItem("products", productDict); - var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var buyerMail = new BuyerMail(purchaseResult, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); purchaseResult.id = buyerMail.id; var sellerResultToAdd = new Buy7.SellerResult @@ -397,7 +398,7 @@ public override IAccount Execute(IActionContext context) costume = shopItem.Costume, gold = taxedPrice }; - var sellerMail = new SellerMail(sellerResultToAdd, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var sellerMail = new SellerMail(sellerResultToAdd, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); sellerResultToAdd.id = sellerMail.id; sellerResults.Add(sellerResultToAdd); diff --git a/Lib9c/Action/ClaimItems.cs b/Lib9c/Action/ClaimItems.cs new file mode 100644 index 0000000000..77b49eb49e --- /dev/null +++ b/Lib9c/Action/ClaimItems.cs @@ -0,0 +1,111 @@ +using System; +using System.Collections.Generic; +using System.Collections.Immutable; +using System.Linq; +using Bencodex.Types; +using Libplanet.Action; +using Libplanet.Action.State; +using Libplanet.Crypto; +using Libplanet.Types.Assets; +using Nekoyume.Extensions; +using Nekoyume.Model.Item; +using Nekoyume.Model.State; +using Nekoyume.TableData; +using static Lib9c.SerializeKeys; + +namespace Nekoyume.Action +{ + [ActionType(ActionTypeText)] + public class ClaimItems : GameAction, IClaimItems + { + private const string ActionTypeText = "claim_items"; + + public IReadOnlyList<(Address address, IReadOnlyList fungibleAssetValues)> ClaimData { get; private set; } + + public ClaimItems() + { + } + + public ClaimItems(IReadOnlyList<(Address, IReadOnlyList)> claimData) + { + ClaimData = claimData; + } + + protected override IImmutableDictionary PlainValueInternal => + ImmutableDictionary.Empty + .Add(ClaimDataKey, ClaimData.Aggregate(List.Empty, (list, tuple) => + { + var serializedFungibleAssetValues = tuple.fungibleAssetValues.Select(x => x.Serialize()).Serialize(); + + return list.Add(new List(tuple.address.Bencoded, serializedFungibleAssetValues)); + })); + + protected override void LoadPlainValueInternal( + IImmutableDictionary plainValue) + { + ClaimData = ((List)plainValue[ClaimDataKey]) + .Select(pairValue => + { + List pair = (List)pairValue; + return ( + new Address(pair[0]), + pair[1].ToList(x => x.ToFungibleAssetValue()) as IReadOnlyList); + }).ToList(); + } + + public override IAccount Execute(IActionContext context) + { + context.UseGas(1); + + var states = context.PreviousState; + var random = context.GetRandom(); + var itemSheet = states.GetSheets(containItemSheet: true).GetItemSheet(); + + foreach (var (avatarAddress, fungibleAssetValues) in ClaimData) + { + var inventoryAddress = avatarAddress.Derive(LegacyInventoryKey); + var inventory = states.GetInventory(inventoryAddress) + ?? throw new FailedLoadStateException( + ActionTypeText, + GetSignerAndOtherAddressesHex(context, inventoryAddress), + typeof(Inventory), + inventoryAddress); + + foreach (var fungibleAssetValue in fungibleAssetValues) + { + if (fungibleAssetValue.Currency.DecimalPlaces != 0) + { + throw new ArgumentException( + $"DecimalPlaces of fungibleAssetValue for claimItems are not 0: {fungibleAssetValue.Currency.Ticker}"); + } + + var parsedTicker = fungibleAssetValue.Currency.Ticker.Split("_"); + if (parsedTicker.Length != 3 + || parsedTicker[0] != "Item" + || (parsedTicker[1] != "NT" && parsedTicker[1] != "T") + || !int.TryParse(parsedTicker[2], out var itemId)) + { + throw new ArgumentException( + $"Format of Amount currency's ticker is invalid"); + } + + states = states.BurnAsset(context, context.Signer, fungibleAssetValue); + + var item = itemSheet[itemId] switch + { + MaterialItemSheet.Row materialRow => parsedTicker[1] == "T" + ? ItemFactory.CreateTradableMaterial(materialRow) + : ItemFactory.CreateMaterial(materialRow), + var itemRow => ItemFactory.CreateItem(itemRow, random) + }; + + inventory.AddItem(item, (int)fungibleAssetValue.RawValue); + } + + states = states.SetState(inventoryAddress, inventory.Serialize()); + } + + return states; + } + } +} diff --git a/Lib9c/Action/ClaimMonsterCollectionReward.cs b/Lib9c/Action/ClaimMonsterCollectionReward.cs index 44e350a27f..85bfb70c3c 100644 --- a/Lib9c/Action/ClaimMonsterCollectionReward.cs +++ b/Lib9c/Action/ClaimMonsterCollectionReward.cs @@ -84,7 +84,8 @@ public static IAccount Claim(IActionContext context, Address avatarAddress, stri throw new RequiredBlockIndexException($"{collectionAddress} is not available yet"); } - Guid id = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + Guid id = random.GenerateRandomGuid(); var result = new MonsterCollectionResult(id, avatarAddress, rewards); var mail = new MonsterCollectionMail(result, context.BlockIndex, id, context.BlockIndex); avatarState.Update(mail); @@ -95,7 +96,7 @@ public static IAccount Claim(IActionContext context, Address avatarAddress, stri ItemSheet.Row row = itemSheet[rewardInfo.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, rewardInfo.Quantity); } monsterCollectionState.Claim(context.BlockIndex); diff --git a/Lib9c/Action/ClaimMonsterCollectionReward0.cs b/Lib9c/Action/ClaimMonsterCollectionReward0.cs index 06767761c7..b82cfd089f 100644 --- a/Lib9c/Action/ClaimMonsterCollectionReward0.cs +++ b/Lib9c/Action/ClaimMonsterCollectionReward0.cs @@ -66,6 +66,7 @@ public override IAccount Execute(IActionContext context) long rewardLevel = monsterCollectionState.GetRewardLevel(context.BlockIndex); ItemSheet itemSheet = states.GetItemSheet(); + var random = context.GetRandom(); for (int i = 0; i < rewardLevel; i++) { int level = i + 1; @@ -75,7 +76,7 @@ public override IAccount Execute(IActionContext context) } List rewards = monsterCollectionState.RewardLevelMap[level]; - Guid id = context.Random.GenerateRandomGuid(); + Guid id = random.GenerateRandomGuid(); MonsterCollectionResult result = new MonsterCollectionResult(id, avatarAddress, rewards); MonsterCollectionMail mail = new MonsterCollectionMail(result, context.BlockIndex, id, context.BlockIndex); avatarState.Update(mail); @@ -84,7 +85,7 @@ public override IAccount Execute(IActionContext context) var row = itemSheet[rewardInfo.ItemId]; var item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem2(item, rewardInfo.Quantity); } monsterCollectionState.UpdateRewardMap(level, result, context.BlockIndex); diff --git a/Lib9c/Action/ClaimMonsterCollectionReward2.cs b/Lib9c/Action/ClaimMonsterCollectionReward2.cs index 2a56b158e5..fbe7ba910a 100644 --- a/Lib9c/Action/ClaimMonsterCollectionReward2.cs +++ b/Lib9c/Action/ClaimMonsterCollectionReward2.cs @@ -72,7 +72,8 @@ public override IAccount Execute(IActionContext context) throw new RequiredBlockIndexException($"{collectionAddress} is not available yet"); } - Guid id = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + Guid id = random.GenerateRandomGuid(); var result = new MonsterCollectionResult(id, avatarAddress, rewards); var mail = new MonsterCollectionMail(result, context.BlockIndex, id, context.BlockIndex); avatarState.Update(mail); @@ -83,7 +84,7 @@ public override IAccount Execute(IActionContext context) ItemSheet.Row row = itemSheet[rewardInfo.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem2(item, rewardInfo.Quantity); } monsterCollectionState.Claim(context.BlockIndex); diff --git a/Lib9c/Action/ClaimRaidReward.cs b/Lib9c/Action/ClaimRaidReward.cs index de6935cc9c..0df5dee0e8 100644 --- a/Lib9c/Action/ClaimRaidReward.cs +++ b/Lib9c/Action/ClaimRaidReward.cs @@ -68,6 +68,7 @@ public override IAccount Execute(IActionContext context) var raiderAddress = Addresses.GetRaiderAddress(AvatarAddress, raidId); RaiderState raiderState = states.GetRaiderState(raiderAddress); int rank = WorldBossHelper.CalculateRank(bossRow, raiderState.HighScore); + var random = context.GetRandom(); if (raiderState.LatestRewardRank < rank) { for (int i = raiderState.LatestRewardRank; i < rank; i++) @@ -78,7 +79,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random + random ); foreach (var reward in rewards) diff --git a/Lib9c/Action/ClaimStakeReward.cs b/Lib9c/Action/ClaimStakeReward.cs index d400f9c699..6cff524dd7 100644 --- a/Lib9c/Action/ClaimStakeReward.cs +++ b/Lib9c/Action/ClaimStakeReward.cs @@ -126,12 +126,13 @@ public override IAccount Execute(IActionContext context) out _); // Fixed Reward + var random = context.GetRandom(); foreach (var reward in stakeRegularFixedRewardSheet[stakingLevel].Rewards) { var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); avatarState.inventory.AddItem(item, reward.Count * rewardSteps); } @@ -160,7 +161,7 @@ public override IAccount Execute(IActionContext context) var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); avatarState.inventory.AddItem(item, majorUnit); break; } diff --git a/Lib9c/Action/ClaimStakeReward1.cs b/Lib9c/Action/ClaimStakeReward1.cs index 8131ec40b0..350f7a3672 100644 --- a/Lib9c/Action/ClaimStakeReward1.cs +++ b/Lib9c/Action/ClaimStakeReward1.cs @@ -65,6 +65,7 @@ public override IAccount Execute(IActionContext context) var rewards = stakeRegularRewardSheet[level].Rewards; ItemSheet itemSheet = sheets.GetItemSheet(); var accumulatedRewards = stakeState.CalculateAccumulatedItemRewardsV1(context.BlockIndex); + var random = context.GetRandom(); foreach (var reward in rewards) { var (quantity, _) = stakedAmount.DivRem(currency * reward.Rate); @@ -77,7 +78,7 @@ public override IAccount Execute(IActionContext context) ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, (int) quantity * accumulatedRewards); } @@ -90,7 +91,7 @@ public override IAccount Execute(IActionContext context) ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, reward.Count * accumulatedRewards); } } diff --git a/Lib9c/Action/ClaimStakeReward2.cs b/Lib9c/Action/ClaimStakeReward2.cs index 37fd24ff37..4f1478a6cd 100644 --- a/Lib9c/Action/ClaimStakeReward2.cs +++ b/Lib9c/Action/ClaimStakeReward2.cs @@ -92,6 +92,7 @@ public override IAccount Execute(IActionContext context) var rewards = stakeRegularRewardSheet[level].Rewards; ItemSheet itemSheet = sheets.GetItemSheet(); var accumulatedRewards = stakeState.CalculateAccumulatedItemRewardsV1(context.BlockIndex); + var random = context.GetRandom(); foreach (var reward in rewards) { var (quantity, _) = stakedAmount.DivRem(currency * reward.Rate); @@ -104,7 +105,7 @@ public override IAccount Execute(IActionContext context) ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, (int)quantity * accumulatedRewards); } @@ -117,7 +118,7 @@ public override IAccount Execute(IActionContext context) ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, reward.Count * accumulatedRewards); } } diff --git a/Lib9c/Action/ClaimStakeReward3.cs b/Lib9c/Action/ClaimStakeReward3.cs index a38bae2d37..8f4e22c109 100644 --- a/Lib9c/Action/ClaimStakeReward3.cs +++ b/Lib9c/Action/ClaimStakeReward3.cs @@ -119,6 +119,7 @@ private IAccount ProcessReward( var stakedCurrency = stakedAmount.Currency; // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { switch (reward.Type) @@ -134,7 +135,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, (int)quantity * itemRewardStep); break; case StakeRegularRewardSheet.StakeRewardType.Rune: @@ -158,7 +159,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimStakeReward4.cs b/Lib9c/Action/ClaimStakeReward4.cs index 81129a4dc5..fc3b176b45 100644 --- a/Lib9c/Action/ClaimStakeReward4.cs +++ b/Lib9c/Action/ClaimStakeReward4.cs @@ -265,6 +265,7 @@ private IAccount ProcessReward( var stakedCurrency = stakedAmount.Currency; // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { switch (reward.Type) @@ -280,7 +281,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, (int)quantity * itemRewardStep); break; case StakeRegularRewardSheet.StakeRewardType.Rune: @@ -324,7 +325,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimStakeReward5.cs b/Lib9c/Action/ClaimStakeReward5.cs index 3ebfaf3496..7b067813c1 100644 --- a/Lib9c/Action/ClaimStakeReward5.cs +++ b/Lib9c/Action/ClaimStakeReward5.cs @@ -265,6 +265,7 @@ private IAccount ProcessReward( var stakedCurrency = stakedAmount.Currency; // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { switch (reward.Type) @@ -280,7 +281,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, (int)quantity * itemRewardStep); break; case StakeRegularRewardSheet.StakeRewardType.Rune: @@ -324,7 +325,7 @@ private IAccount ProcessReward( ItemSheet.Row row = itemSheet[reward.ItemId]; ItemBase item = row is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(row, context.Random); + : ItemFactory.CreateItem(row, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimStakeReward6.cs b/Lib9c/Action/ClaimStakeReward6.cs index a433d62d80..01138a3d4a 100644 --- a/Lib9c/Action/ClaimStakeReward6.cs +++ b/Lib9c/Action/ClaimStakeReward6.cs @@ -374,6 +374,7 @@ private IAccount ProcessReward( List regularReward) { // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { var rateFav = FungibleAssetValue.Parse( @@ -397,7 +398,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); var majorUnit = (int)rewardQuantityForSingleStep * itemRewardStep; if (majorUnit < 1) { @@ -468,7 +469,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimStakeReward7.cs b/Lib9c/Action/ClaimStakeReward7.cs index f97d03f83c..c14f31636e 100644 --- a/Lib9c/Action/ClaimStakeReward7.cs +++ b/Lib9c/Action/ClaimStakeReward7.cs @@ -375,6 +375,7 @@ private IAccount ProcessReward( List regularReward) { // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { var rateFav = FungibleAssetValue.Parse( @@ -398,7 +399,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); var majorUnit = (int)rewardQuantityForSingleStep * itemRewardStep; if (majorUnit < 1) { @@ -469,7 +470,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimStakeReward8.cs b/Lib9c/Action/ClaimStakeReward8.cs index 50c74cce83..335d4065fd 100644 --- a/Lib9c/Action/ClaimStakeReward8.cs +++ b/Lib9c/Action/ClaimStakeReward8.cs @@ -374,6 +374,7 @@ private IAccount ProcessReward( List regularReward) { // Regular Reward + var random = context.GetRandom(); foreach (var reward in regularReward) { var rateFav = FungibleAssetValue.Parse( @@ -397,7 +398,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); var majorUnit = (int)rewardQuantityForSingleStep * itemRewardStep; if (majorUnit < 1) { @@ -497,7 +498,7 @@ private IAccount ProcessReward( var itemRow = itemSheet[reward.ItemId]; var item = itemRow is MaterialItemSheet.Row materialRow ? ItemFactory.CreateTradableMaterial(materialRow) - : ItemFactory.CreateItem(itemRow, context.Random); + : ItemFactory.CreateItem(itemRow, random); avatarState.inventory.AddItem(item, reward.Count * itemRewardStep); } diff --git a/Lib9c/Action/ClaimWordBossKillReward.cs b/Lib9c/Action/ClaimWordBossKillReward.cs index b4e63481b9..3fb56aa21e 100644 --- a/Lib9c/Action/ClaimWordBossKillReward.cs +++ b/Lib9c/Action/ClaimWordBossKillReward.cs @@ -60,6 +60,7 @@ public override IAccount Execute(IActionContext context) var rewardRecord = new WorldBossKillRewardRecord((List) states.GetState(worldBossKillRewardRecordAddress)); Address worldBossAddress = Addresses.GetWorldBossAddress(raidId); var worldBossState = new WorldBossState((List) states.GetState(worldBossAddress)); + var random = context.GetRandom(); return states.SetWorldBossKillReward( context, worldBossKillRewardRecordAddress, @@ -69,7 +70,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/CombinationConsumable.cs b/Lib9c/Action/CombinationConsumable.cs index 34938204ed..37d1a1ba96 100644 --- a/Lib9c/Action/CombinationConsumable.cs +++ b/Lib9c/Action/CombinationConsumable.cs @@ -189,9 +189,10 @@ public override IAccount Execute(IActionContext context) // ~Subtract Required ActionPoint // Create Consumable + var random = context.GetRandom(); var consumable = (Consumable) ItemFactory.CreateItemUsable( consumableRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex ); // ~Create Consumable @@ -204,7 +205,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Consumable // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationConsumable0.cs b/Lib9c/Action/CombinationConsumable0.cs index 1fd7bbfe1a..9ef362b126 100644 --- a/Lib9c/Action/CombinationConsumable0.cs +++ b/Lib9c/Action/CombinationConsumable0.cs @@ -188,14 +188,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable2.cs b/Lib9c/Action/CombinationConsumable2.cs index 078febc2ff..e8b9f65501 100644 --- a/Lib9c/Action/CombinationConsumable2.cs +++ b/Lib9c/Action/CombinationConsumable2.cs @@ -188,14 +188,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable3.cs b/Lib9c/Action/CombinationConsumable3.cs index 35f6c2d33a..01d4b2d35f 100644 --- a/Lib9c/Action/CombinationConsumable3.cs +++ b/Lib9c/Action/CombinationConsumable3.cs @@ -188,14 +188,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable4.cs b/Lib9c/Action/CombinationConsumable4.cs index 8efa134fe6..e1b9e2823e 100644 --- a/Lib9c/Action/CombinationConsumable4.cs +++ b/Lib9c/Action/CombinationConsumable4.cs @@ -188,14 +188,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable5.cs b/Lib9c/Action/CombinationConsumable5.cs index fdfad69bdd..c74b8e0481 100644 --- a/Lib9c/Action/CombinationConsumable5.cs +++ b/Lib9c/Action/CombinationConsumable5.cs @@ -230,14 +230,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable6.cs b/Lib9c/Action/CombinationConsumable6.cs index e594fa3b59..2335e58417 100644 --- a/Lib9c/Action/CombinationConsumable6.cs +++ b/Lib9c/Action/CombinationConsumable6.cs @@ -193,14 +193,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable7.cs b/Lib9c/Action/CombinationConsumable7.cs index d1cb538978..f5d7cd8569 100644 --- a/Lib9c/Action/CombinationConsumable7.cs +++ b/Lib9c/Action/CombinationConsumable7.cs @@ -194,14 +194,15 @@ public override IAccount Execute(IActionContext context) // 조합 결과 획득. var requiredBlockIndex = ctx.BlockIndex + recipeRow.RequiredBlockIndex; - var itemId = ctx.Random.GenerateRandomGuid(); + var random = ctx.GetRandom(); + var itemId = random.GenerateRandomGuid(); var itemUsable = GetFood(consumableItemRow, itemId, requiredBlockIndex); // 액션 결과 result.itemUsable = itemUsable; var mail = new CombinationMail( result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; diff --git a/Lib9c/Action/CombinationConsumable8.cs b/Lib9c/Action/CombinationConsumable8.cs index 39dc5cae37..dbe673e17b 100644 --- a/Lib9c/Action/CombinationConsumable8.cs +++ b/Lib9c/Action/CombinationConsumable8.cs @@ -63,6 +63,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); var slotAddress = avatarAddress.Derive( string.Format( CultureInfo.InvariantCulture, @@ -206,7 +207,7 @@ public override IAccount Execute(IActionContext context) // Create Consumable var consumable = (Consumable) ItemFactory.CreateItemUsable( consumableRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex ); // ~Create Consumable @@ -219,7 +220,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Consumable // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment.cs b/Lib9c/Action/CombinationEquipment.cs index 354375c038..1812f35b0e 100644 --- a/Lib9c/Action/CombinationEquipment.cs +++ b/Lib9c/Action/CombinationEquipment.cs @@ -389,9 +389,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: isMimisbrunnrSubRecipe ); @@ -402,7 +403,7 @@ public override IAccount Execute(IActionContext context) agentState, petState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), petOptionSheet, @@ -417,7 +418,7 @@ public override IAccount Execute(IActionContext context) AddSkillOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -461,7 +462,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment0.cs b/Lib9c/Action/CombinationEquipment0.cs index 4ef7d98251..34d430919a 100644 --- a/Lib9c/Action/CombinationEquipment0.cs +++ b/Lib9c/Action/CombinationEquipment0.cs @@ -133,9 +133,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = ctx.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) } optionIds = SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -218,7 +219,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update2(mail); diff --git a/Lib9c/Action/CombinationEquipment10.cs b/Lib9c/Action/CombinationEquipment10.cs index b2e5a0b272..6e863121f6 100644 --- a/Lib9c/Action/CombinationEquipment10.cs +++ b/Lib9c/Action/CombinationEquipment10.cs @@ -277,9 +277,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -288,7 +289,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, states.GetSheet(), states.GetSheet() @@ -306,7 +307,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment11.cs b/Lib9c/Action/CombinationEquipment11.cs index 831af83056..60f7355f8e 100644 --- a/Lib9c/Action/CombinationEquipment11.cs +++ b/Lib9c/Action/CombinationEquipment11.cs @@ -292,9 +292,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -303,7 +304,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, states.GetSheet(), states.GetSheet() @@ -321,7 +322,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment12.cs b/Lib9c/Action/CombinationEquipment12.cs index 79a2be5453..7c95e62fe6 100644 --- a/Lib9c/Action/CombinationEquipment12.cs +++ b/Lib9c/Action/CombinationEquipment12.cs @@ -358,9 +358,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -369,7 +370,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -387,7 +388,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment13.cs b/Lib9c/Action/CombinationEquipment13.cs index 891a2dbcdc..4d0210aa40 100644 --- a/Lib9c/Action/CombinationEquipment13.cs +++ b/Lib9c/Action/CombinationEquipment13.cs @@ -364,9 +364,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -375,7 +376,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -389,7 +390,7 @@ public override IAccount Execute(IActionContext context) AddSkillOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -419,7 +420,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment14.cs b/Lib9c/Action/CombinationEquipment14.cs index 706c037a9a..b38d35b5b2 100644 --- a/Lib9c/Action/CombinationEquipment14.cs +++ b/Lib9c/Action/CombinationEquipment14.cs @@ -372,9 +372,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -383,7 +384,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -397,7 +398,7 @@ public override IAccount Execute(IActionContext context) AddSkillOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -427,7 +428,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment15.cs b/Lib9c/Action/CombinationEquipment15.cs index 55f741e42f..1ffa368155 100644 --- a/Lib9c/Action/CombinationEquipment15.cs +++ b/Lib9c/Action/CombinationEquipment15.cs @@ -373,9 +373,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment)ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: recipeRow.IsMimisBrunnrSubRecipe(subRecipeId)); @@ -384,7 +385,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -398,7 +399,7 @@ public override IAccount Execute(IActionContext context) AddSkillOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -428,7 +429,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment16.cs b/Lib9c/Action/CombinationEquipment16.cs index b380a5d484..a2068fd7bf 100644 --- a/Lib9c/Action/CombinationEquipment16.cs +++ b/Lib9c/Action/CombinationEquipment16.cs @@ -88,6 +88,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); var slotAddress = avatarAddress.Derive( string.Format( CultureInfo.InvariantCulture, @@ -404,7 +405,7 @@ public override IAccount Execute(IActionContext context) // Create Equipment var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex, madeWithMimisbrunnrRecipe: isMimisbrunnrSubRecipe ); @@ -415,7 +416,7 @@ public override IAccount Execute(IActionContext context) agentState, petState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), petOptionSheet, @@ -430,7 +431,7 @@ public override IAccount Execute(IActionContext context) AddSkillOption( agentState, equipment, - context.Random, + random, subRecipeRow, sheets.GetSheet(), sheets.GetSheet() @@ -474,7 +475,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment2.cs b/Lib9c/Action/CombinationEquipment2.cs index b11c9dd0d1..2c18b7c1c4 100644 --- a/Lib9c/Action/CombinationEquipment2.cs +++ b/Lib9c/Action/CombinationEquipment2.cs @@ -133,9 +133,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) } optionIds = SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -218,7 +219,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update3(mail); diff --git a/Lib9c/Action/CombinationEquipment3.cs b/Lib9c/Action/CombinationEquipment3.cs index 80a0789165..3d02d22744 100644 --- a/Lib9c/Action/CombinationEquipment3.cs +++ b/Lib9c/Action/CombinationEquipment3.cs @@ -133,9 +133,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) } optionIds = SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -227,7 +228,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update3(mail); diff --git a/Lib9c/Action/CombinationEquipment4.cs b/Lib9c/Action/CombinationEquipment4.cs index 8e39b0bf7b..cccb637d86 100644 --- a/Lib9c/Action/CombinationEquipment4.cs +++ b/Lib9c/Action/CombinationEquipment4.cs @@ -133,9 +133,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) } optionIds = SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -227,7 +228,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/CombinationEquipment5.cs b/Lib9c/Action/CombinationEquipment5.cs index d88972ec2b..076e0ff05e 100644 --- a/Lib9c/Action/CombinationEquipment5.cs +++ b/Lib9c/Action/CombinationEquipment5.cs @@ -133,9 +133,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -174,7 +175,7 @@ public override IAccount Execute(IActionContext context) } optionIds = SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -227,7 +228,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/CombinationEquipment6.cs b/Lib9c/Action/CombinationEquipment6.cs index d35e93badf..d9a9c952cf 100644 --- a/Lib9c/Action/CombinationEquipment6.cs +++ b/Lib9c/Action/CombinationEquipment6.cs @@ -140,9 +140,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -181,7 +182,7 @@ public override IAccount Execute(IActionContext context) } optionIds = CombinationEquipment4.SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -234,7 +235,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/CombinationEquipment7.cs b/Lib9c/Action/CombinationEquipment7.cs index ad0812b0e3..e3cdf12901 100644 --- a/Lib9c/Action/CombinationEquipment7.cs +++ b/Lib9c/Action/CombinationEquipment7.cs @@ -139,9 +139,10 @@ public override IAccount Execute(IActionContext context) } var requiredBlockIndex = ctx.BlockIndex + recipe.RequiredBlockIndex; + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipRow, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), requiredBlockIndex ); @@ -182,7 +183,7 @@ public override IAccount Execute(IActionContext context) } optionIds = CombinationEquipment4.SelectOption(states.GetSheet(), states.GetSheet(), - subRecipe, ctx.Random, equipment); + subRecipe, random, equipment); equipment.Update(requiredBlockIndex); } @@ -235,7 +236,7 @@ public override IAccount Execute(IActionContext context) itemType = ItemType.Equipment, }; slotState.Update(result, ctx.BlockIndex, requiredBlockIndex); - var mail = new CombinationMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), + var mail = new CombinationMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/CombinationEquipment8.cs b/Lib9c/Action/CombinationEquipment8.cs index 6887857e27..0844814a03 100644 --- a/Lib9c/Action/CombinationEquipment8.cs +++ b/Lib9c/Action/CombinationEquipment8.cs @@ -277,9 +277,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex); if (!(subRecipeRow is null)) @@ -287,7 +288,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, states.GetSheet(), states.GetSheet() @@ -305,7 +306,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/CombinationEquipment9.cs b/Lib9c/Action/CombinationEquipment9.cs index defe1a970b..79cd08f4f7 100644 --- a/Lib9c/Action/CombinationEquipment9.cs +++ b/Lib9c/Action/CombinationEquipment9.cs @@ -276,9 +276,10 @@ public override IAccount Execute(IActionContext context) // ~Transfer Required NCG // Create Equipment + var random = context.GetRandom(); var equipment = (Equipment) ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex); if (!(subRecipeRow is null)) @@ -286,7 +287,7 @@ public override IAccount Execute(IActionContext context) AddAndUnlockOption( agentState, equipment, - context.Random, + random, subRecipeRow, states.GetSheet(), states.GetSheet() @@ -304,7 +305,7 @@ public override IAccount Execute(IActionContext context) // ~Add or Update Equipment // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/Coupons/IssueCoupons.cs b/Lib9c/Action/Coupons/IssueCoupons.cs index 94a256d970..e3c8aca247 100644 --- a/Lib9c/Action/Coupons/IssueCoupons.cs +++ b/Lib9c/Action/Coupons/IssueCoupons.cs @@ -42,7 +42,7 @@ public override IAccount Execute(IActionContext context) CheckPermission(context); var wallet = states.GetCouponWallet(Recipient); - var random = context.Random; + var random = context.GetRandom(); var idBytes = new byte[16]; var orderedRewards = Rewards.OrderBy(kv => kv.Key, default(RewardSet.Comparer)); foreach (var (rewardSet, quantity) in orderedRewards) diff --git a/Lib9c/Action/Coupons/RedeemCoupon.cs b/Lib9c/Action/Coupons/RedeemCoupon.cs index 89c0ceac60..334fffe076 100644 --- a/Lib9c/Action/Coupons/RedeemCoupon.cs +++ b/Lib9c/Action/Coupons/RedeemCoupon.cs @@ -66,11 +66,12 @@ public override IAccount Execute(IActionContext context) wallet = wallet.Remove(CouponId); var itemSheets = states.GetItemSheet(); + var random = context.GetRandom(); foreach ((int itemId, uint q) in coupon) { for (uint i = 0U; i < q; i++) { - ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], context.Random); + ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], random); // XXX: Inventory.AddItem() method silently ignores count if the item is // non-fungible. avatarState.inventory.AddItem(item, count: 1); diff --git a/Lib9c/Action/CreateAvatar.cs b/Lib9c/Action/CreateAvatar.cs index e5c55a4db6..ade2861fdb 100644 --- a/Lib9c/Action/CreateAvatar.cs +++ b/Lib9c/Action/CreateAvatar.cs @@ -195,6 +195,7 @@ public override IAccount Execute(IActionContext context) var skillSheet = states.GetSheet(); var characterLevelSheet = states.GetSheet(); var enhancementCostSheet = states.GetSheet(); + var random = context.GetRandom(); avatarState.level = 300; avatarState.exp = characterLevelSheet[300].Exp; @@ -209,7 +210,7 @@ public override IAccount Execute(IActionContext context) var equipment = (Equipment)ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), 0L, madeWithMimisbrunnrRecipe: subRecipeRow.IsMimisbrunnrSubRecipe ?? false); @@ -249,7 +250,7 @@ public override IAccount Execute(IActionContext context) .First(x => x.ItemSubType == subType && x.Grade == grade && x.Level == i); - equipment.LevelUp(ctx.Random, costRow, true); + equipment.LevelUp(random, costRow, true); } avatarState.inventory.AddItem(equipment); @@ -259,7 +260,7 @@ public override IAccount Execute(IActionContext context) sheetTypes: new[] {typeof(CreateAvatarItemSheet), typeof(CreateAvatarFavSheet)}); var itemSheet = sheets.GetItemSheet(); var createAvatarItemSheet = sheets.GetSheet(); - AddItem(itemSheet, createAvatarItemSheet, avatarState, context.Random); + AddItem(itemSheet, createAvatarItemSheet, avatarState, context.GetRandom()); var createAvatarFavSheet = sheets.GetSheet(); states = MintAsset(createAvatarFavSheet, avatarState, states, context); sw.Stop(); diff --git a/Lib9c/Action/CreateAvatar0.cs b/Lib9c/Action/CreateAvatar0.cs index 8a1b27d325..b5528a7dfa 100644 --- a/Lib9c/Action/CreateAvatar0.cs +++ b/Lib9c/Action/CreateAvatar0.cs @@ -73,6 +73,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); IActionContext ctx = context; + var random = ctx.GetRandom(); var states = ctx.PreviousState; if (ctx.Rehearsal) { @@ -181,6 +182,7 @@ public static AvatarState CreateAvatarState(string name, Address rankingMapAddress) { var state = ctx.PreviousState; + var random = ctx.GetRandom(); var gameConfigState = state.GetGameConfigState(); var avatarState = new AvatarState( avatarAddress, @@ -197,9 +199,10 @@ public static AvatarState CreateAvatarState(string name, var costumeItemSheet = ctx.PreviousState.GetSheet(); var equipmentItemSheet = ctx.PreviousState.GetSheet(); var consumableItemSheet = ctx.PreviousState.GetSheet(); + AddItemsForTest( avatarState: avatarState, - random: ctx.Random, + random: random, costumeItemSheet: costumeItemSheet, materialItemSheet: materialItemSheet, equipmentItemSheet: equipmentItemSheet, @@ -216,7 +219,7 @@ public static AvatarState CreateAvatarState(string name, { AddCustomEquipment( avatarState: avatarState, - random: ctx.Random, + random: random, skillSheet: skillSheet, equipmentItemSheet: equipmentItemSheet, equipmentItemOptionSheet: optionSheet, diff --git a/Lib9c/Action/CreateAvatar10.cs b/Lib9c/Action/CreateAvatar10.cs index f9cf7f04d5..f9ab62f43b 100644 --- a/Lib9c/Action/CreateAvatar10.cs +++ b/Lib9c/Action/CreateAvatar10.cs @@ -69,6 +69,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); IActionContext ctx = context; + var random = ctx.GetRandom(); var signer = ctx.Signer; var states = ctx.PreviousState; var avatarAddress = signer.Derive( @@ -210,7 +211,7 @@ public override IAccount Execute(IActionContext context) var equipment = (Equipment)ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), 0L, madeWithMimisbrunnrRecipe: subRecipeRow.IsMimisbrunnrSubRecipe ?? false); @@ -250,7 +251,7 @@ public override IAccount Execute(IActionContext context) .First(x => x.ItemSubType == subType && x.Grade == grade && x.Level == i); - equipment.LevelUp(ctx.Random, costRow, true); + equipment.LevelUp(random, costRow, true); } avatarState.inventory.AddItem(equipment); @@ -260,7 +261,7 @@ public override IAccount Execute(IActionContext context) sheetTypes: new[] {typeof(CreateAvatarItemSheet), typeof(CreateAvatarFavSheet)}); var itemSheet = sheets.GetItemSheet(); var createAvatarItemSheet = sheets.GetSheet(); - AddItem(itemSheet, createAvatarItemSheet, avatarState, context.Random); + AddItem(itemSheet, createAvatarItemSheet, avatarState, random); var createAvatarFavSheet = sheets.GetSheet(); states = MintAsset(createAvatarFavSheet, avatarState, states, context); sw.Stop(); diff --git a/Lib9c/Action/CreateAvatar8.cs b/Lib9c/Action/CreateAvatar8.cs index 57b008e5d2..1fb99849ad 100644 --- a/Lib9c/Action/CreateAvatar8.cs +++ b/Lib9c/Action/CreateAvatar8.cs @@ -198,6 +198,7 @@ public override IAccount Execute(IActionContext context) var skillSheet = states.GetSheet(); var characterLevelSheet = states.GetSheet(); var enhancementCostSheet = states.GetSheet(); + var random = context.GetRandom(); avatarState.level = 300; avatarState.exp = characterLevelSheet[300].Exp; @@ -212,7 +213,7 @@ public override IAccount Execute(IActionContext context) var equipment = (Equipment)ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), 0L, madeWithMimisbrunnrRecipe: subRecipeRow.IsMimisbrunnrSubRecipe ?? false); @@ -252,7 +253,7 @@ public override IAccount Execute(IActionContext context) .First(x => x.ItemSubType == subType && x.Grade == grade && x.Level == i); - equipment.LevelUp(ctx.Random, costRow, true); + equipment.LevelUp(random, costRow, true); } avatarState.inventory.AddItem(equipment); diff --git a/Lib9c/Action/CreateAvatar9.cs b/Lib9c/Action/CreateAvatar9.cs index 3f28558191..0ce97c4b6b 100644 --- a/Lib9c/Action/CreateAvatar9.cs +++ b/Lib9c/Action/CreateAvatar9.cs @@ -69,6 +69,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); IActionContext ctx = context; + IRandom random = ctx.GetRandom(); var signer = ctx.Signer; var states = ctx.PreviousState; var avatarAddress = signer.Derive( @@ -217,7 +218,7 @@ public override IAccount Execute(IActionContext context) var equipment = (Equipment)ItemFactory.CreateItemUsable( equipmentRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), 0L, madeWithMimisbrunnrRecipe: subRecipeRow.IsMimisbrunnrSubRecipe ?? false); @@ -257,7 +258,7 @@ public override IAccount Execute(IActionContext context) .First(x => x.ItemSubType == subType && x.Grade == grade && x.Level == i); - equipment.LevelUp(ctx.Random, costRow, true); + equipment.LevelUp(random, costRow, true); } avatarState.inventory.AddItem(equipment); diff --git a/Lib9c/Action/DailyReward2.cs b/Lib9c/Action/DailyReward2.cs index 5db7c35060..2297d8b718 100644 --- a/Lib9c/Action/DailyReward2.cs +++ b/Lib9c/Action/DailyReward2.cs @@ -70,9 +70,10 @@ public override IAccount Execute(IActionContext context) }; // create mail + var random = ctx.GetRandom(); var mail = new DailyRewardMail(result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; diff --git a/Lib9c/Action/DailyReward3.cs b/Lib9c/Action/DailyReward3.cs index dcfdccc11b..ccf4f5c7c4 100644 --- a/Lib9c/Action/DailyReward3.cs +++ b/Lib9c/Action/DailyReward3.cs @@ -69,9 +69,10 @@ public override IAccount Execute(IActionContext context) }; // create mail + var random = ctx.GetRandom(); var mail = new DailyRewardMail(result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; diff --git a/Lib9c/Action/DailyReward4.cs b/Lib9c/Action/DailyReward4.cs index b040f30cc6..824c6014e2 100644 --- a/Lib9c/Action/DailyReward4.cs +++ b/Lib9c/Action/DailyReward4.cs @@ -77,9 +77,10 @@ public override IAccount Execute(IActionContext context) }; // create mail + var random = ctx.GetRandom(); var mail = new DailyRewardMail(result, ctx.BlockIndex, - ctx.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; diff --git a/Lib9c/Action/EventConsumableItemCrafts.cs b/Lib9c/Action/EventConsumableItemCrafts.cs index be76fb536c..3be87289a3 100644 --- a/Lib9c/Action/EventConsumableItemCrafts.cs +++ b/Lib9c/Action/EventConsumableItemCrafts.cs @@ -239,16 +239,17 @@ public override IAccount Execute(IActionContext context) // ~Subtract Required ActionPoint // Create and Add Consumable + var random = context.GetRandom(); var consumable = ItemFactory.CreateItemUsable( consumableRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex ); avatarState.inventory.AddItem(consumable); // ~Create and Add Consumable // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/EventConsumableItemCrafts0.cs b/Lib9c/Action/EventConsumableItemCrafts0.cs index e0a4085595..c8d86ac9f9 100644 --- a/Lib9c/Action/EventConsumableItemCrafts0.cs +++ b/Lib9c/Action/EventConsumableItemCrafts0.cs @@ -81,6 +81,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -253,14 +254,14 @@ public override IAccount Execute(IActionContext context) // Create and Add Consumable var consumable = ItemFactory.CreateItemUsable( consumableRow, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), endBlockIndex ); avatarState.inventory.AddItem(consumable); // ~Create and Add Consumable // Update Slot - var mailId = context.Random.GenerateRandomGuid(); + var mailId = random.GenerateRandomGuid(); var attachmentResult = new CombinationConsumable5.ResultModel { id = mailId, diff --git a/Lib9c/Action/EventDungeonBattle.cs b/Lib9c/Action/EventDungeonBattle.cs index 26ecb4d120..ec984be138 100644 --- a/Lib9c/Action/EventDungeonBattle.cs +++ b/Lib9c/Action/EventDungeonBattle.cs @@ -333,8 +333,9 @@ is Bencodex.Types.List serializedEventDungeonInfoList } } + var random = context.GetRandom(); var simulator = new StageSimulator( - context.Random, + random, avatarState, Foods, runeStates, @@ -349,7 +350,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulator.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/EventDungeonBattleV1.cs b/Lib9c/Action/EventDungeonBattleV1.cs index cc0b87d192..e63f5ba983 100644 --- a/Lib9c/Action/EventDungeonBattleV1.cs +++ b/Lib9c/Action/EventDungeonBattleV1.cs @@ -315,8 +315,9 @@ is Bencodex.Types.List serializedEventDungeonInfoList var simulatorSheets = useV100291Sheets ? sheets.GetSimulatorSheetsV100291() : sheets.GetSimulatorSheetsV1(); + var random = context.GetRandom(); var simulator = new StageSimulatorV2( - context.Random, + random, avatarState, Foods, new List(), @@ -330,7 +331,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulatorV2.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/EventDungeonBattleV2.cs b/Lib9c/Action/EventDungeonBattleV2.cs index 6adcfddcbc..447e9a17ba 100644 --- a/Lib9c/Action/EventDungeonBattleV2.cs +++ b/Lib9c/Action/EventDungeonBattleV2.cs @@ -317,8 +317,9 @@ is Bencodex.Types.List serializedEventDungeonInfoList var simulatorSheets = useV100291Sheets ? sheets.GetSimulatorSheetsV100291() : sheets.GetSimulatorSheetsV1(); + var random = context.GetRandom(); var simulator = new StageSimulatorV2( - context.Random, + random, avatarState, Foods, new List(), @@ -332,7 +333,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulatorV2.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/EventDungeonBattleV3.cs b/Lib9c/Action/EventDungeonBattleV3.cs index 62fe54da63..cb355470db 100644 --- a/Lib9c/Action/EventDungeonBattleV3.cs +++ b/Lib9c/Action/EventDungeonBattleV3.cs @@ -335,8 +335,9 @@ is Bencodex.Types.List serializedEventDungeonInfoList } } + var random = context.GetRandom(); var simulator = new StageSimulatorV3( - context.Random, + random, avatarState, Foods, runeStates, @@ -351,7 +352,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulatorV3.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/EventDungeonBattleV4.cs b/Lib9c/Action/EventDungeonBattleV4.cs index b0070bc7d5..369657190f 100644 --- a/Lib9c/Action/EventDungeonBattleV4.cs +++ b/Lib9c/Action/EventDungeonBattleV4.cs @@ -332,8 +332,9 @@ is Bencodex.Types.List serializedEventDungeonInfoList } } + var random = context.GetRandom(); var simulator = new StageSimulatorV3( - context.Random, + random, avatarState, Foods, runeStates, @@ -348,7 +349,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulatorV3.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/EventDungeonBattleV5.cs b/Lib9c/Action/EventDungeonBattleV5.cs index 077ae78dcc..5065a78dde 100644 --- a/Lib9c/Action/EventDungeonBattleV5.cs +++ b/Lib9c/Action/EventDungeonBattleV5.cs @@ -120,6 +120,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -333,7 +334,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList } var simulator = new StageSimulator( - context.Random, + random, avatarState, Foods, runeStates, @@ -348,7 +349,7 @@ is Bencodex.Types.List serializedEventDungeonInfoList sheets.GetSheet(), sheets.GetSheet(), StageSimulator.GetWaveRewards( - context.Random, + random, stageRow, sheets.GetSheet(), PlayCount)); diff --git a/Lib9c/Action/Garages/UnloadFromMyGarages.cs b/Lib9c/Action/Garages/UnloadFromMyGarages.cs index 90c297cddb..2c1ca799ab 100644 --- a/Lib9c/Action/Garages/UnloadFromMyGarages.cs +++ b/Lib9c/Action/Garages/UnloadFromMyGarages.cs @@ -131,7 +131,8 @@ public override IAccount Execute(IActionContext context) ValidateFields(addressesHex); state = TransferFungibleAssetValues(context, state); state = TransferFungibleItems(context.Signer, state); - return SendMail(context.BlockIndex, context.Random, state); + var random = context.GetRandom(); + return SendMail(context.BlockIndex, random, state); } private void ValidateFields(string addressesHex) diff --git a/Lib9c/Action/HackAndSlash.cs b/Lib9c/Action/HackAndSlash.cs index 8dcbae479d..50e87a35fc 100644 --- a/Lib9c/Action/HackAndSlash.cs +++ b/Lib9c/Action/HackAndSlash.cs @@ -104,11 +104,12 @@ public override IAccount Execute(IActionContext context) return context.PreviousState; } + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash0.cs b/Lib9c/Action/HackAndSlash0.cs index b01e042f8c..bcee7219d9 100644 --- a/Lib9c/Action/HackAndSlash0.cs +++ b/Lib9c/Action/HackAndSlash0.cs @@ -183,8 +183,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash10.cs b/Lib9c/Action/HackAndSlash10.cs index d09612d8aa..86a08916f4 100644 --- a/Lib9c/Action/HackAndSlash10.cs +++ b/Lib9c/Action/HackAndSlash10.cs @@ -214,8 +214,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}HAS Update QuestList: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash11.cs b/Lib9c/Action/HackAndSlash11.cs index 089956b173..914717cb5b 100644 --- a/Lib9c/Action/HackAndSlash11.cs +++ b/Lib9c/Action/HackAndSlash11.cs @@ -203,8 +203,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}HAS Update QuestList: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash12.cs b/Lib9c/Action/HackAndSlash12.cs index fe44a36ad4..061e1ed3d6 100644 --- a/Lib9c/Action/HackAndSlash12.cs +++ b/Lib9c/Action/HackAndSlash12.cs @@ -237,8 +237,9 @@ public override IAccount Execute(IActionContext context) } sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash13.cs b/Lib9c/Action/HackAndSlash13.cs index 5174cce208..55c41f5407 100644 --- a/Lib9c/Action/HackAndSlash13.cs +++ b/Lib9c/Action/HackAndSlash13.cs @@ -248,8 +248,9 @@ public override IAccount Execute(IActionContext context) } sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash14.cs b/Lib9c/Action/HackAndSlash14.cs index 1c7139fe35..29f8334625 100644 --- a/Lib9c/Action/HackAndSlash14.cs +++ b/Lib9c/Action/HackAndSlash14.cs @@ -288,8 +288,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}HAS Get skillState : {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, skillsOnWaveStart, diff --git a/Lib9c/Action/HackAndSlash15.cs b/Lib9c/Action/HackAndSlash15.cs index bc2c4d2134..6863a58b13 100644 --- a/Lib9c/Action/HackAndSlash15.cs +++ b/Lib9c/Action/HackAndSlash15.cs @@ -86,10 +86,11 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); CheckObsolete(ActionObsoleteConfig.V200030ObsoleteIndex, context); + var random = context.GetRandom(); return Execute(context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute(IAccount states, diff --git a/Lib9c/Action/HackAndSlash16.cs b/Lib9c/Action/HackAndSlash16.cs index 8a83f3b375..b74e061ddc 100644 --- a/Lib9c/Action/HackAndSlash16.cs +++ b/Lib9c/Action/HackAndSlash16.cs @@ -98,11 +98,12 @@ public override IAccount Execute(IActionContext context) CheckObsolete(ActionObsoleteConfig.V200030ObsoleteIndex, context); + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash17.cs b/Lib9c/Action/HackAndSlash17.cs index d9112dee3a..c610ee7777 100644 --- a/Lib9c/Action/HackAndSlash17.cs +++ b/Lib9c/Action/HackAndSlash17.cs @@ -95,11 +95,12 @@ public override IAccount Execute(IActionContext context) } CheckObsolete(ActionObsoleteConfig.V200030ObsoleteIndex, context); + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash18.cs b/Lib9c/Action/HackAndSlash18.cs index 1fc4b7bf08..03ffcaf9ad 100644 --- a/Lib9c/Action/HackAndSlash18.cs +++ b/Lib9c/Action/HackAndSlash18.cs @@ -96,11 +96,12 @@ public override IAccount Execute(IActionContext context) CheckObsolete(ActionObsoleteConfig.V100340ObsoleteIndex, context); + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash19.cs b/Lib9c/Action/HackAndSlash19.cs index 6e6b1d7558..c319f24f40 100644 --- a/Lib9c/Action/HackAndSlash19.cs +++ b/Lib9c/Action/HackAndSlash19.cs @@ -101,11 +101,12 @@ public override IAccount Execute(IActionContext context) CheckObsolete(ActionObsoleteConfig.V100360ObsoleteIndex, context); + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash2.cs b/Lib9c/Action/HackAndSlash2.cs index e64f5697cb..5152fdcf57 100644 --- a/Lib9c/Action/HackAndSlash2.cs +++ b/Lib9c/Action/HackAndSlash2.cs @@ -179,8 +179,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash20.cs b/Lib9c/Action/HackAndSlash20.cs index 491a5e4f4b..1e72e7ce0b 100644 --- a/Lib9c/Action/HackAndSlash20.cs +++ b/Lib9c/Action/HackAndSlash20.cs @@ -106,11 +106,12 @@ public override IAccount Execute(IActionContext context) return context.PreviousState; } + var random = context.GetRandom(); return Execute( context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash21.cs b/Lib9c/Action/HackAndSlash21.cs index d08f42a4c9..9926128ec6 100644 --- a/Lib9c/Action/HackAndSlash21.cs +++ b/Lib9c/Action/HackAndSlash21.cs @@ -100,6 +100,7 @@ protected override void LoadPlainValueInternal( public override IAccount Execute(IActionContext context) { context.UseGas(1); + var random = context.GetRandom(); if (context.Rehearsal) { return context.PreviousState; @@ -109,7 +110,7 @@ public override IAccount Execute(IActionContext context) context.PreviousState, context.Signer, context.BlockIndex, - context.Random); + random); } public IAccount Execute( diff --git a/Lib9c/Action/HackAndSlash3.cs b/Lib9c/Action/HackAndSlash3.cs index 417e0ac0c1..32e7b58125 100644 --- a/Lib9c/Action/HackAndSlash3.cs +++ b/Lib9c/Action/HackAndSlash3.cs @@ -179,8 +179,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash4.cs b/Lib9c/Action/HackAndSlash4.cs index 664b006ea8..4b8804d496 100644 --- a/Lib9c/Action/HackAndSlash4.cs +++ b/Lib9c/Action/HackAndSlash4.cs @@ -184,8 +184,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash5.cs b/Lib9c/Action/HackAndSlash5.cs index 2326f3601f..49e2d1efed 100644 --- a/Lib9c/Action/HackAndSlash5.cs +++ b/Lib9c/Action/HackAndSlash5.cs @@ -178,8 +178,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash6.cs b/Lib9c/Action/HackAndSlash6.cs index d9feb74118..6de84e4658 100644 --- a/Lib9c/Action/HackAndSlash6.cs +++ b/Lib9c/Action/HackAndSlash6.cs @@ -186,8 +186,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash7.cs b/Lib9c/Action/HackAndSlash7.cs index df06c7f95c..92a0ac6e21 100644 --- a/Lib9c/Action/HackAndSlash7.cs +++ b/Lib9c/Action/HackAndSlash7.cs @@ -201,8 +201,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash8.cs b/Lib9c/Action/HackAndSlash8.cs index d8ec905ce6..e01238e463 100644 --- a/Lib9c/Action/HackAndSlash8.cs +++ b/Lib9c/Action/HackAndSlash8.cs @@ -205,8 +205,9 @@ public override IAccount Execute(IActionContext context) sw.Restart(); var characterSheet = states.GetSheet(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlash9.cs b/Lib9c/Action/HackAndSlash9.cs index c67dbe4072..11f7b0daf9 100644 --- a/Lib9c/Action/HackAndSlash9.cs +++ b/Lib9c/Action/HackAndSlash9.cs @@ -215,8 +215,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}HAS Update QuestList: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/HackAndSlashRandomBuff.cs b/Lib9c/Action/HackAndSlashRandomBuff.cs index b3989c3c5c..63e5755ffb 100644 --- a/Lib9c/Action/HackAndSlashRandomBuff.cs +++ b/Lib9c/Action/HackAndSlashRandomBuff.cs @@ -83,7 +83,8 @@ public override IAccount Execute(IActionContext context) $"{nameof(HackAndSlashRandomBuff)} required {cost}, but balance is {balance}"); } - var buffSelector = new WeightedSelector(context.Random); + var random = context.GetRandom(); + var buffSelector = new WeightedSelector(random); var buffSheet = states.GetSheet(); foreach (var buffRow in buffSheet.Values) { @@ -95,7 +96,7 @@ public override IAccount Execute(IActionContext context) var needPitySystem = IsPitySystemNeeded(buffIds, gachaCount, buffSheet); if (needPitySystem) { - var newBuffSelector = new WeightedSelector(context.Random); + var newBuffSelector = new WeightedSelector(random); var minimumRank = AdvancedGacha ? CrystalRandomBuffSheet.Row.BuffRank.S : CrystalRandomBuffSheet.Row.BuffRank.A; diff --git a/Lib9c/Action/HackAndSlashSweep.cs b/Lib9c/Action/HackAndSlashSweep.cs index 02243eadd7..5bc3c94ef4 100644 --- a/Lib9c/Action/HackAndSlashSweep.cs +++ b/Lib9c/Action/HackAndSlashSweep.cs @@ -315,8 +315,9 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); + var random = context.GetRandom(); var rewardItems = HackAndSlashSweep6.GetRewardItems( - context.Random, + random, playCount, stageRow, materialItemSheet); diff --git a/Lib9c/Action/HackAndSlashSweep1.cs b/Lib9c/Action/HackAndSlashSweep1.cs index ee56e3cb72..bea3a829c5 100644 --- a/Lib9c/Action/HackAndSlashSweep1.cs +++ b/Lib9c/Action/HackAndSlashSweep1.cs @@ -172,7 +172,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep2.cs b/Lib9c/Action/HackAndSlashSweep2.cs index 1d7dcd3482..f44a11bedc 100644 --- a/Lib9c/Action/HackAndSlashSweep2.cs +++ b/Lib9c/Action/HackAndSlashSweep2.cs @@ -176,7 +176,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep3.cs b/Lib9c/Action/HackAndSlashSweep3.cs index 7506fc091d..4b7f9b81a8 100644 --- a/Lib9c/Action/HackAndSlashSweep3.cs +++ b/Lib9c/Action/HackAndSlashSweep3.cs @@ -239,7 +239,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep4.cs b/Lib9c/Action/HackAndSlashSweep4.cs index 127a57fa58..5df83a6ba5 100644 --- a/Lib9c/Action/HackAndSlashSweep4.cs +++ b/Lib9c/Action/HackAndSlashSweep4.cs @@ -246,7 +246,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep5.cs b/Lib9c/Action/HackAndSlashSweep5.cs index 0bb98616f4..d609659613 100644 --- a/Lib9c/Action/HackAndSlashSweep5.cs +++ b/Lib9c/Action/HackAndSlashSweep5.cs @@ -223,7 +223,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep6.cs b/Lib9c/Action/HackAndSlashSweep6.cs index 6790e0642f..fdfbb7b7c6 100644 --- a/Lib9c/Action/HackAndSlashSweep6.cs +++ b/Lib9c/Action/HackAndSlashSweep6.cs @@ -235,7 +235,8 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); - var rewardItems = GetRewardItems(context.Random, playCount, stageRow, materialItemSheet); + var random = context.GetRandom(); + var rewardItems = GetRewardItems(random, playCount, stageRow, materialItemSheet); avatarState.UpdateInventory(rewardItems); var levelSheet = sheets.GetSheet(); diff --git a/Lib9c/Action/HackAndSlashSweep7.cs b/Lib9c/Action/HackAndSlashSweep7.cs index 61fd1570d6..9815e6af14 100644 --- a/Lib9c/Action/HackAndSlashSweep7.cs +++ b/Lib9c/Action/HackAndSlashSweep7.cs @@ -248,8 +248,9 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); + var random = context.GetRandom(); var rewardItems = HackAndSlashSweep6.GetRewardItems( - context.Random, + random, playCount, stageRow, materialItemSheet); diff --git a/Lib9c/Action/HackAndSlashSweep8.cs b/Lib9c/Action/HackAndSlashSweep8.cs index bbd79edb61..e089d21416 100644 --- a/Lib9c/Action/HackAndSlashSweep8.cs +++ b/Lib9c/Action/HackAndSlashSweep8.cs @@ -317,8 +317,9 @@ public override IAccount Execute(IActionContext context) var stageWaveSheet = sheets.GetSheet(); avatarState.UpdateMonsterMap(stageWaveSheet, stageId); + var random = context.GetRandom(); var rewardItems = HackAndSlashSweep6.GetRewardItems( - context.Random, + random, playCount, stageRow, materialItemSheet); diff --git a/Lib9c/Action/HackAndSlashSweep9.cs b/Lib9c/Action/HackAndSlashSweep9.cs index 019d98e72f..1edec10011 100644 --- a/Lib9c/Action/HackAndSlashSweep9.cs +++ b/Lib9c/Action/HackAndSlashSweep9.cs @@ -79,6 +79,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -316,7 +317,7 @@ public override IAccount Execute(IActionContext context) avatarState.UpdateMonsterMap(stageWaveSheet, stageId); var rewardItems = HackAndSlashSweep6.GetRewardItems( - context.Random, + random, playCount, stageRow, materialItemSheet); diff --git a/Lib9c/Action/IClaimItems.cs b/Lib9c/Action/IClaimItems.cs new file mode 100644 index 0000000000..47cdc86745 --- /dev/null +++ b/Lib9c/Action/IClaimItems.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; +using Libplanet.Crypto; +using Libplanet.Types.Assets; + +namespace Nekoyume.Action +{ + public interface IClaimItems + { + public IReadOnlyList<(Address address, IReadOnlyList fungibleAssetValues)> ClaimData { get; } + } +} diff --git a/Lib9c/Action/ItemEnhancement.cs b/Lib9c/Action/ItemEnhancement.cs index 770f3dd6c6..da9d121dd8 100644 --- a/Lib9c/Action/ItemEnhancement.cs +++ b/Lib9c/Action/ItemEnhancement.cs @@ -284,9 +284,10 @@ public override IAccount Execute(IActionContext context) row.Value.Grade == enhancementEquipment.Grade && row.Value.Exp <= enhancementEquipment.Exp ).Value; + var random = ctx.GetRandom(); if (!(row is null) && row.Level > enhancementEquipment.level) { - enhancementEquipment.SetLevel(ctx.Random, row.Level, enhancementCostSheet); + enhancementEquipment.SetLevel(random, row.Level, enhancementCostSheet); } EnhancementCostSheetV3.Row targetCostRow; @@ -345,7 +346,7 @@ public override IAccount Execute(IActionContext context) }; var mail = new ItemEnhanceMail( - result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex + result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement0.cs b/Lib9c/Action/ItemEnhancement0.cs index 47245db2b1..dd9550daa4 100644 --- a/Lib9c/Action/ItemEnhancement0.cs +++ b/Lib9c/Action/ItemEnhancement0.cs @@ -240,7 +240,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement10.cs b/Lib9c/Action/ItemEnhancement10.cs index 2029d320ab..d6662e3cb7 100644 --- a/Lib9c/Action/ItemEnhancement10.cs +++ b/Lib9c/Action/ItemEnhancement10.cs @@ -302,10 +302,11 @@ public override IAccount Execute(IActionContext context) var preItemUsable = new Equipment((Dictionary) enhancementEquipment.Serialize()); // Equipment level up & Update - var equipmentResult = GetEnhancementResult(row, ctx.Random); + var random = ctx.GetRandom(); + var equipmentResult = GetEnhancementResult(row, random); if (equipmentResult != EnhancementResult.Fail) { - enhancementEquipment.LevelUp(ctx.Random, row, equipmentResult == EnhancementResult.GreatSuccess); + enhancementEquipment.LevelUp(random, row, equipmentResult == EnhancementResult.GreatSuccess); } var requiredBlockCount = GetRequiredBlockCount(row, equipmentResult); var requiredBlockIndex = ctx.BlockIndex + requiredBlockCount; @@ -327,7 +328,7 @@ public override IAccount Execute(IActionContext context) gold = requiredNcg, }; - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); avatarState.Update(mail); diff --git a/Lib9c/Action/ItemEnhancement11.cs b/Lib9c/Action/ItemEnhancement11.cs index 56c52b1e7b..689689254c 100644 --- a/Lib9c/Action/ItemEnhancement11.cs +++ b/Lib9c/Action/ItemEnhancement11.cs @@ -304,11 +304,12 @@ public override IAccount Execute(IActionContext context) var preItemUsable = new Equipment((Dictionary)enhancementEquipment.Serialize()); // Equipment level up & Update - var equipmentResult = GetEnhancementResult(row, ctx.Random); + var random = ctx.GetRandom(); + var equipmentResult = GetEnhancementResult(row, random); FungibleAssetValue crystal = 0 * CrystalCalculator.CRYSTAL; if (equipmentResult != EnhancementResult.Fail) { - enhancementEquipment.LevelUp(ctx.Random, row, equipmentResult == EnhancementResult.GreatSuccess); + enhancementEquipment.LevelUp(random, row, equipmentResult == EnhancementResult.GreatSuccess); } else { @@ -361,7 +362,7 @@ public override IAccount Execute(IActionContext context) CRYSTAL = crystal, }; - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); avatarState.Update(mail); diff --git a/Lib9c/Action/ItemEnhancement12.cs b/Lib9c/Action/ItemEnhancement12.cs index 4702f1845f..56c18f4e26 100644 --- a/Lib9c/Action/ItemEnhancement12.cs +++ b/Lib9c/Action/ItemEnhancement12.cs @@ -339,9 +339,11 @@ public override IAccount Execute(IActionContext context) row.Value.Grade == enhancementEquipment.Grade && row.Value.Exp <= enhancementEquipment.Exp ).Value; + + var random = ctx.GetRandom(); if (!(row is null) && row.Level > enhancementEquipment.level) { - enhancementEquipment.SetLevel(ctx.Random, row.Level, enhancementCostSheet); + enhancementEquipment.SetLevel(random, row.Level, enhancementCostSheet); } EnhancementCostSheetV3.Row targetCostRow; @@ -400,7 +402,7 @@ public override IAccount Execute(IActionContext context) }; var mail = new ItemEnhanceMail( - result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex + result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement13.cs b/Lib9c/Action/ItemEnhancement13.cs index a97f48caa5..241e3347bb 100644 --- a/Lib9c/Action/ItemEnhancement13.cs +++ b/Lib9c/Action/ItemEnhancement13.cs @@ -132,6 +132,7 @@ public override IAccount Execute(IActionContext context) context.UseGas(1); var ctx = context; var states = ctx.PreviousState; + var random = context.GetRandom(); if (ctx.Rehearsal) { @@ -342,7 +343,7 @@ public override IAccount Execute(IActionContext context) ).Value; if (!(row is null) && row.Level > enhancementEquipment.level) { - enhancementEquipment.SetLevel(ctx.Random, row.Level, enhancementCostSheet); + enhancementEquipment.SetLevel(random, row.Level, enhancementCostSheet); } EnhancementCostSheetV3.Row targetCostRow; @@ -401,7 +402,7 @@ public override IAccount Execute(IActionContext context) }; var mail = new ItemEnhanceMail( - result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex + result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex ); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement2.cs b/Lib9c/Action/ItemEnhancement2.cs index 94a6c789cd..d92288eeb3 100644 --- a/Lib9c/Action/ItemEnhancement2.cs +++ b/Lib9c/Action/ItemEnhancement2.cs @@ -223,7 +223,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement3.cs b/Lib9c/Action/ItemEnhancement3.cs index 587741b18b..a97526733f 100644 --- a/Lib9c/Action/ItemEnhancement3.cs +++ b/Lib9c/Action/ItemEnhancement3.cs @@ -223,7 +223,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement4.cs b/Lib9c/Action/ItemEnhancement4.cs index 56733534f8..c3178a55a3 100644 --- a/Lib9c/Action/ItemEnhancement4.cs +++ b/Lib9c/Action/ItemEnhancement4.cs @@ -221,7 +221,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement5.cs b/Lib9c/Action/ItemEnhancement5.cs index d24f439d64..490943c600 100644 --- a/Lib9c/Action/ItemEnhancement5.cs +++ b/Lib9c/Action/ItemEnhancement5.cs @@ -221,7 +221,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement6.cs b/Lib9c/Action/ItemEnhancement6.cs index 0f763d40f3..aa294d28e5 100644 --- a/Lib9c/Action/ItemEnhancement6.cs +++ b/Lib9c/Action/ItemEnhancement6.cs @@ -223,7 +223,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement7.cs b/Lib9c/Action/ItemEnhancement7.cs index f0a31cc6db..c11a28d4b1 100644 --- a/Lib9c/Action/ItemEnhancement7.cs +++ b/Lib9c/Action/ItemEnhancement7.cs @@ -266,7 +266,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement8.cs b/Lib9c/Action/ItemEnhancement8.cs index 9caf738a65..1013261922 100644 --- a/Lib9c/Action/ItemEnhancement8.cs +++ b/Lib9c/Action/ItemEnhancement8.cs @@ -230,7 +230,8 @@ public override IAccount Execute(IActionContext context) sw.Stop(); Log.Verbose("{AddressesHex}ItemEnhancement Remove Materials: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var random = ctx.GetRandom(); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); diff --git a/Lib9c/Action/ItemEnhancement9.cs b/Lib9c/Action/ItemEnhancement9.cs index e2baa8ab3c..838a87d8e2 100644 --- a/Lib9c/Action/ItemEnhancement9.cs +++ b/Lib9c/Action/ItemEnhancement9.cs @@ -285,10 +285,11 @@ public override IAccount Execute(IActionContext context) var preItemUsable = new Equipment((Dictionary) enhancementEquipment.Serialize()); // Equipment level up & Update - var equipmentResult = GetEnhancementResult(row, ctx.Random); + var random = ctx.GetRandom(); + var equipmentResult = GetEnhancementResult(row, random); if (equipmentResult != EnhancementResult.Fail) { - enhancementEquipment.LevelUp(ctx.Random, row, equipmentResult == EnhancementResult.GreatSuccess); + enhancementEquipment.LevelUp(random, row, equipmentResult == EnhancementResult.GreatSuccess); } var requiredBlockCount = GetRequiredBlockCount(row, equipmentResult); var requiredBlockIndex = ctx.BlockIndex + requiredBlockCount; @@ -310,7 +311,7 @@ public override IAccount Execute(IActionContext context) gold = requiredNcg, }; - var mail = new ItemEnhanceMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), requiredBlockIndex); + var mail = new ItemEnhanceMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), requiredBlockIndex); result.id = mail.id; avatarState.inventory.RemoveNonFungibleItem(enhancementEquipment); avatarState.Update(mail); diff --git a/Lib9c/Action/MimisbrunnrBattle.cs b/Lib9c/Action/MimisbrunnrBattle.cs index dfc42182fd..131262f6c5 100644 --- a/Lib9c/Action/MimisbrunnrBattle.cs +++ b/Lib9c/Action/MimisbrunnrBattle.cs @@ -335,8 +335,9 @@ public override IAccount Execute(IActionContext context) itemSlotState.UpdateCostumes(Costumes); states = states.SetState(itemSlotStateAddress, itemSlotState.Serialize()); + var random = context.GetRandom(); var simulator = new StageSimulator( - context.Random, + random, avatarState, Foods, runeStates, @@ -350,7 +351,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSimulatorSheets(), sheets.GetSheet(), sheets.GetSheet(), - StageSimulator.GetWaveRewards(context.Random, stageRow, materialSheet, PlayCount)); + StageSimulator.GetWaveRewards(random, stageRow, materialSheet, PlayCount)); sw.Stop(); Log.Verbose( "{AddressesHex}Mimisbrunnr Initialize Simulator: {Elapsed}", diff --git a/Lib9c/Action/MimisbrunnrBattle0.cs b/Lib9c/Action/MimisbrunnrBattle0.cs index cc710d62ef..fad076b425 100644 --- a/Lib9c/Action/MimisbrunnrBattle0.cs +++ b/Lib9c/Action/MimisbrunnrBattle0.cs @@ -215,9 +215,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle10.cs b/Lib9c/Action/MimisbrunnrBattle10.cs index 7ab40bf5cf..c56c05227b 100644 --- a/Lib9c/Action/MimisbrunnrBattle10.cs +++ b/Lib9c/Action/MimisbrunnrBattle10.cs @@ -303,8 +303,9 @@ public override IAccount Execute(IActionContext context) ? sheets.GetSimulatorSheetsV100291() : sheets.GetSimulatorSheetsV1(); var materialSheet = sheets.GetSheet(); + var random = context.GetRandom(); var simulator = new StageSimulatorV2( - context.Random, + random, avatarState, foods, new List(), @@ -317,7 +318,7 @@ public override IAccount Execute(IActionContext context) simulatorSheets, sheets.GetSheet(), sheets.GetSheet(), - StageSimulatorV2.GetWaveRewards(context.Random, stageRow, materialSheet, playCount)); + StageSimulatorV2.GetWaveRewards(random, stageRow, materialSheet, playCount)); sw.Stop(); Log.Verbose( "{AddressesHex}Mimisbrunnr Initialize Simulator: {Elapsed}", diff --git a/Lib9c/Action/MimisbrunnrBattle11.cs b/Lib9c/Action/MimisbrunnrBattle11.cs index 0cf6c119bd..17253ea84a 100644 --- a/Lib9c/Action/MimisbrunnrBattle11.cs +++ b/Lib9c/Action/MimisbrunnrBattle11.cs @@ -336,8 +336,9 @@ public override IAccount Execute(IActionContext context) itemSlotState.UpdateCostumes(Costumes); states = states.SetState(itemSlotStateAddress, itemSlotState.Serialize()); + var random = context.GetRandom(); var simulator = new StageSimulatorV3( - context.Random, + random, avatarState, Foods, runeStates, @@ -351,7 +352,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSimulatorSheets(), sheets.GetSheet(), sheets.GetSheet(), - StageSimulatorV3.GetWaveRewards(context.Random, stageRow, materialSheet, PlayCount)); + StageSimulatorV3.GetWaveRewards(random, stageRow, materialSheet, PlayCount)); sw.Stop(); Log.Verbose( "{AddressesHex}Mimisbrunnr Initialize Simulator: {Elapsed}", diff --git a/Lib9c/Action/MimisbrunnrBattle12.cs b/Lib9c/Action/MimisbrunnrBattle12.cs index 4d1ea389ce..2c22b0b86e 100644 --- a/Lib9c/Action/MimisbrunnrBattle12.cs +++ b/Lib9c/Action/MimisbrunnrBattle12.cs @@ -335,8 +335,9 @@ public override IAccount Execute(IActionContext context) itemSlotState.UpdateCostumes(Costumes); states = states.SetState(itemSlotStateAddress, itemSlotState.Serialize()); + var random = context.GetRandom(); var simulator = new StageSimulatorV3( - context.Random, + random, avatarState, Foods, runeStates, @@ -350,7 +351,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSimulatorSheets(), sheets.GetSheet(), sheets.GetSheet(), - StageSimulatorV3.GetWaveRewards(context.Random, stageRow, materialSheet, PlayCount)); + StageSimulatorV3.GetWaveRewards(random, stageRow, materialSheet, PlayCount)); sw.Stop(); Log.Verbose( "{AddressesHex}Mimisbrunnr Initialize Simulator: {Elapsed}", diff --git a/Lib9c/Action/MimisbrunnrBattle2.cs b/Lib9c/Action/MimisbrunnrBattle2.cs index 5c90520778..66bbb6241e 100644 --- a/Lib9c/Action/MimisbrunnrBattle2.cs +++ b/Lib9c/Action/MimisbrunnrBattle2.cs @@ -215,9 +215,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle3.cs b/Lib9c/Action/MimisbrunnrBattle3.cs index 823c70e1bf..b9e4f0bae6 100644 --- a/Lib9c/Action/MimisbrunnrBattle3.cs +++ b/Lib9c/Action/MimisbrunnrBattle3.cs @@ -215,9 +215,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle4.cs b/Lib9c/Action/MimisbrunnrBattle4.cs index 039ba094fc..9ca20fb513 100644 --- a/Lib9c/Action/MimisbrunnrBattle4.cs +++ b/Lib9c/Action/MimisbrunnrBattle4.cs @@ -221,9 +221,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle5.cs b/Lib9c/Action/MimisbrunnrBattle5.cs index 7bd5baae1e..4179f76609 100644 --- a/Lib9c/Action/MimisbrunnrBattle5.cs +++ b/Lib9c/Action/MimisbrunnrBattle5.cs @@ -214,9 +214,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle6.cs b/Lib9c/Action/MimisbrunnrBattle6.cs index 74192fe287..fbbb9d8e2a 100644 --- a/Lib9c/Action/MimisbrunnrBattle6.cs +++ b/Lib9c/Action/MimisbrunnrBattle6.cs @@ -226,9 +226,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle7.cs b/Lib9c/Action/MimisbrunnrBattle7.cs index 73c945eeb7..366b51f1d7 100644 --- a/Lib9c/Action/MimisbrunnrBattle7.cs +++ b/Lib9c/Action/MimisbrunnrBattle7.cs @@ -226,9 +226,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle8.cs b/Lib9c/Action/MimisbrunnrBattle8.cs index 6610d03862..e11a3f7965 100644 --- a/Lib9c/Action/MimisbrunnrBattle8.cs +++ b/Lib9c/Action/MimisbrunnrBattle8.cs @@ -222,9 +222,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/MimisbrunnrBattle9.cs b/Lib9c/Action/MimisbrunnrBattle9.cs index 61d1c23d95..17fb1a5a48 100644 --- a/Lib9c/Action/MimisbrunnrBattle9.cs +++ b/Lib9c/Action/MimisbrunnrBattle9.cs @@ -230,9 +230,10 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Mimisbrunnr Unequip items: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = context.GetRandom(); var costumeStatSheet = states.GetSheet(); var simulator = new StageSimulatorV1( - ctx.Random, + random, avatarState, foods, worldId, diff --git a/Lib9c/Action/Raid.cs b/Lib9c/Action/Raid.cs index f7b0dbe7c7..097252d1b3 100644 --- a/Lib9c/Action/Raid.cs +++ b/Lib9c/Action/Raid.cs @@ -207,9 +207,10 @@ public override IAccount Execute(IActionContext context) } // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulator( row.BossId, - context.Random, + random, avatarState, FoodIds, runeStates, @@ -303,7 +304,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid1.cs b/Lib9c/Action/Raid1.cs index c987fd0c8f..d141be667b 100644 --- a/Lib9c/Action/Raid1.cs +++ b/Lib9c/Action/Raid1.cs @@ -167,9 +167,10 @@ public override IAccount Execute(IActionContext context) var raidSimulatorSheets = sheets.GetRaidSimulatorSheetsV1(); // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulatorV1( row.BossId, - context.Random, + random, avatarState, FoodIds, raidSimulatorSheets, @@ -228,7 +229,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid2.cs b/Lib9c/Action/Raid2.cs index e5da2dcc1c..93be5d8925 100644 --- a/Lib9c/Action/Raid2.cs +++ b/Lib9c/Action/Raid2.cs @@ -178,9 +178,10 @@ public override IAccount Execute(IActionContext context) var raidSimulatorSheets = sheets.GetRaidSimulatorSheetsV1(); // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulatorV1( row.BossId, - context.Random, + random, avatarState, FoodIds, raidSimulatorSheets, @@ -239,7 +240,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid3.cs b/Lib9c/Action/Raid3.cs index 67e37488cb..147a32495e 100644 --- a/Lib9c/Action/Raid3.cs +++ b/Lib9c/Action/Raid3.cs @@ -210,9 +210,10 @@ public override IAccount Execute(IActionContext context) } // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulatorV2( row.BossId, - context.Random, + random, avatarState, FoodIds, runeStates, @@ -306,7 +307,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid4.cs b/Lib9c/Action/Raid4.cs index 8fe54c6efd..d39f221364 100644 --- a/Lib9c/Action/Raid4.cs +++ b/Lib9c/Action/Raid4.cs @@ -212,9 +212,10 @@ public override IAccount Execute(IActionContext context) } // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulatorV2( row.BossId, - context.Random, + random, avatarState, FoodIds, runeStates, @@ -308,7 +309,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid5.cs b/Lib9c/Action/Raid5.cs index b8a504efbb..53277bd859 100644 --- a/Lib9c/Action/Raid5.cs +++ b/Lib9c/Action/Raid5.cs @@ -213,9 +213,10 @@ public override IAccount Execute(IActionContext context) } // Simulate. + var random = context.GetRandom(); var simulator = new RaidSimulatorV2( row.BossId, - context.Random, + random, avatarState, FoodIds, runeStates, @@ -309,7 +310,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/Raid6.cs b/Lib9c/Action/Raid6.cs index 93c837f1c2..9085c3fe0d 100644 --- a/Lib9c/Action/Raid6.cs +++ b/Lib9c/Action/Raid6.cs @@ -47,6 +47,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); IAccount states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -215,7 +216,7 @@ public override IAccount Execute(IActionContext context) // Simulate. var simulator = new RaidSimulator( row.BossId, - context.Random, + random, avatarState, FoodIds, runeStates, @@ -309,7 +310,7 @@ public override IAccount Execute(IActionContext context) sheets.GetSheet(), sheets.GetSheet(), sheets.GetSheet(), - context.Random, + random, AvatarAddress, context.Signer ); diff --git a/Lib9c/Action/RankingBattle.cs b/Lib9c/Action/RankingBattle.cs index 545a374222..d443c944db 100644 --- a/Lib9c/Action/RankingBattle.cs +++ b/Lib9c/Action/RankingBattle.cs @@ -204,8 +204,9 @@ public override IAccount Execute(IActionContext context) var rankingSheets = sheets.GetRankingSimulatorSheetsV100291(); var player = new Player(avatarState, rankingSheets); PreviousEnemyPlayerDigest = new EnemyPlayerDigest(enemyAvatarState); + var random = ctx.GetRandom(); var simulator = new RankingSimulator( - ctx.Random, + random, player, PreviousEnemyPlayerDigest, new List(), @@ -225,7 +226,7 @@ public override IAccount Execute(IActionContext context) simulator.Result, ArenaScoreHelper.GetScoreV4); var rewards = RewardSelector.Select( - ctx.Random, + random, sheets.GetSheet(), sheets.GetSheet(), player.Level, diff --git a/Lib9c/Action/RankingBattle0.cs b/Lib9c/Action/RankingBattle0.cs index 662adc1b06..c84b9ea7b2 100644 --- a/Lib9c/Action/RankingBattle0.cs +++ b/Lib9c/Action/RankingBattle0.cs @@ -156,8 +156,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{WeeklyArenaStateAddress}", weeklyArenaState.address.ToHex()); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle10.cs b/Lib9c/Action/RankingBattle10.cs index 0115feaef3..3322a0f565 100644 --- a/Lib9c/Action/RankingBattle10.cs +++ b/Lib9c/Action/RankingBattle10.cs @@ -218,8 +218,9 @@ public override IAccount Execute(IActionContext context) var rankingSheets = sheets.GetRankingSimulatorSheetsV100291(); var player = new Player(avatarState, rankingSheets); var enemyPlayerDigest = new EnemyPlayerDigest(enemyAvatarState); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, player, enemyPlayerDigest, new List(), diff --git a/Lib9c/Action/RankingBattle11.cs b/Lib9c/Action/RankingBattle11.cs index cadf4a00ce..693cd025c2 100644 --- a/Lib9c/Action/RankingBattle11.cs +++ b/Lib9c/Action/RankingBattle11.cs @@ -188,6 +188,7 @@ public override IAccount Execute(IActionContext context) throw new WeeklyArenaStateAlreadyEndedException(); } + var random = ctx.GetRandom(); if (context.BlockIndex >= UpdateTargetBlockIndex) { // Run updated model @@ -233,7 +234,7 @@ public override IAccount Execute(IActionContext context) var player = new Player(avatarState, rankingSheets); var enemyPlayerDigest = new EnemyPlayerDigest(enemyAvatarState); var simulator = new RankingSimulatorV1( - ctx.Random, + random, player, enemyPlayerDigest, new List(), @@ -319,6 +320,7 @@ public override IAccount Execute(IActionContext context) EnemyPlayerDigest = enemyPlayerDigest; return states; } + // Run Backward compatible return BackwardCompatibleExecute(rawWeeklyArenaState, sheets, avatarState, costumeStatSheet, sw, addressesHex, enemyAvatarState, ctx, states, inventoryAddress, questListAddress, migrationRequired, worldInformationAddress, started); } @@ -378,8 +380,9 @@ private IAccount BackwardCompatibleExecute(Dictionary rawWeeklyArenaState, Dicti var rankingSheets = sheets.GetRankingSimulatorSheetsV100291(); var player = new Player(avatarState, rankingSheets); var enemyPlayerDigest = new EnemyPlayerDigest(enemyAvatarState); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, player, enemyPlayerDigest, new List(), diff --git a/Lib9c/Action/RankingBattle2.cs b/Lib9c/Action/RankingBattle2.cs index 848b4b1702..81e1d2d3a8 100644 --- a/Lib9c/Action/RankingBattle2.cs +++ b/Lib9c/Action/RankingBattle2.cs @@ -161,8 +161,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Get CostumeStatSheet: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle3.cs b/Lib9c/Action/RankingBattle3.cs index 99b12a4643..2089d594cd 100644 --- a/Lib9c/Action/RankingBattle3.cs +++ b/Lib9c/Action/RankingBattle3.cs @@ -164,8 +164,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Get CostumeStatSheet: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle4.cs b/Lib9c/Action/RankingBattle4.cs index 335fbf2f26..33662ffcd8 100644 --- a/Lib9c/Action/RankingBattle4.cs +++ b/Lib9c/Action/RankingBattle4.cs @@ -173,8 +173,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Validate ArenaInfo: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle5.cs b/Lib9c/Action/RankingBattle5.cs index 36584cb634..c8d2f3d5f8 100644 --- a/Lib9c/Action/RankingBattle5.cs +++ b/Lib9c/Action/RankingBattle5.cs @@ -187,8 +187,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Validate ArenaInfo: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle6.cs b/Lib9c/Action/RankingBattle6.cs index 842d91df31..9f6d911485 100644 --- a/Lib9c/Action/RankingBattle6.cs +++ b/Lib9c/Action/RankingBattle6.cs @@ -192,8 +192,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Validate ArenaInfo: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle7.cs b/Lib9c/Action/RankingBattle7.cs index 7258ca442c..4714ba87c5 100644 --- a/Lib9c/Action/RankingBattle7.cs +++ b/Lib9c/Action/RankingBattle7.cs @@ -192,8 +192,9 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}RankingBattle Validate ArenaInfo: {Elapsed}", addressesHex, sw.Elapsed); sw.Restart(); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle8.cs b/Lib9c/Action/RankingBattle8.cs index 1c488c6a8f..12d6385148 100644 --- a/Lib9c/Action/RankingBattle8.cs +++ b/Lib9c/Action/RankingBattle8.cs @@ -197,8 +197,9 @@ public override IAccount Execute(IActionContext context) ArenaInfo = new ArenaInfo((Dictionary)weeklyArenaState[avatarAddress].Serialize()); EnemyArenaInfo = new ArenaInfo((Dictionary)weeklyArenaState[enemyAddress].Serialize()); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/RankingBattle9.cs b/Lib9c/Action/RankingBattle9.cs index 84efb75d63..ed91901c47 100644 --- a/Lib9c/Action/RankingBattle9.cs +++ b/Lib9c/Action/RankingBattle9.cs @@ -197,8 +197,9 @@ public override IAccount Execute(IActionContext context) ArenaInfo = new ArenaInfo((Dictionary)weeklyArenaState[avatarAddress].Serialize()); EnemyArenaInfo = new ArenaInfo((Dictionary)weeklyArenaState[enemyAddress].Serialize()); + var random = ctx.GetRandom(); var simulator = new RankingSimulatorV1( - ctx.Random, + random, avatarState, enemyAvatarState, consumableIds, diff --git a/Lib9c/Action/ReRegisterProduct.cs b/Lib9c/Action/ReRegisterProduct.cs index 2262d92407..43fc158124 100644 --- a/Lib9c/Action/ReRegisterProduct.cs +++ b/Lib9c/Action/ReRegisterProduct.cs @@ -79,6 +79,8 @@ public override IAccount Execute(IActionContext context) marketState.AvatarAddresses.Add(AvatarAddress); states = states.SetState(Addresses.Market, marketState.Serialize()); } + + var random = context.GetRandom(); foreach (var (productInfo, info) in ReRegisterInfos.OrderBy(tuple => tuple.Item2.Type).ThenBy(tuple => tuple.Item2.Price)) { var addressesHex = GetSignerAndOtherAddressesHex(context, AvatarAddress); @@ -158,7 +160,8 @@ public override IAccount Execute(IActionContext context) states = CancelProductRegistration0.Cancel(productsState, productInfo, states, avatarState, context); } - states = RegisterProduct2.Register(context, info, avatarState, productsState, states); + + states = RegisterProduct2.Register(context, info, avatarState, productsState, states, random); } states = states diff --git a/Lib9c/Action/ReRegisterProduct0.cs b/Lib9c/Action/ReRegisterProduct0.cs index 4cbc1a6b4a..60aa45e6f5 100644 --- a/Lib9c/Action/ReRegisterProduct0.cs +++ b/Lib9c/Action/ReRegisterProduct0.cs @@ -79,6 +79,8 @@ public override IAccount Execute(IActionContext context) marketState.AvatarAddresses.Add(AvatarAddress); states = states.SetState(Addresses.Market, marketState.Serialize()); } + + var random = context.GetRandom(); foreach (var (productInfo, info) in ReRegisterInfos.OrderBy(tuple => tuple.Item2.Type).ThenBy(tuple => tuple.Item2.Price)) { var addressesHex = GetSignerAndOtherAddressesHex(context, AvatarAddress); @@ -158,7 +160,8 @@ public override IAccount Execute(IActionContext context) states = CancelProductRegistration0.Cancel(productsState, productInfo, states, avatarState, context); } - states = RegisterProduct0.Register(context, info, avatarState, productsState, states); + + states = RegisterProduct0.Register(context, info, avatarState, productsState, states, random); } states = states diff --git a/Lib9c/Action/RedeemCode.cs b/Lib9c/Action/RedeemCode.cs index f3cdab8c9c..d9eb122206 100644 --- a/Lib9c/Action/RedeemCode.cs +++ b/Lib9c/Action/RedeemCode.cs @@ -95,6 +95,7 @@ public override IAccount Execute(IActionContext context) var row = states.GetSheet().Values.First(r => r.Id == redeemId); var itemSheets = states.GetItemSheet(); + var random = context.GetRandom(); foreach (RedeemRewardSheet.RewardInfo info in row.Rewards) { switch (info.Type) @@ -104,7 +105,7 @@ public override IAccount Execute(IActionContext context) { if (info.ItemId is int itemId) { - ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], context.Random); + ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], random); // We should fix count as 1 because ItemFactory.CreateItem // will create a new item every time. avatarState.inventory.AddItem(item, count: 1); diff --git a/Lib9c/Action/RedeemCode0.cs b/Lib9c/Action/RedeemCode0.cs index 384a28a99f..1976866c3e 100644 --- a/Lib9c/Action/RedeemCode0.cs +++ b/Lib9c/Action/RedeemCode0.cs @@ -84,6 +84,7 @@ public override IAccount Execute(IActionContext context) var row = states.GetSheet().Values.First(r => r.Id == redeemId); var itemSheets = states.GetItemSheet(); + var random = context.GetRandom(); foreach (RedeemRewardSheet.RewardInfo info in row.Rewards) { switch (info.Type) @@ -93,7 +94,7 @@ public override IAccount Execute(IActionContext context) { if (info.ItemId is int itemId) { - ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], context.Random); + ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], random); // We should fix count as 1 because ItemFactory.CreateItem // will create a new item every time. avatarState.inventory.AddItem2(item, count: 1); diff --git a/Lib9c/Action/RedeemCode2.cs b/Lib9c/Action/RedeemCode2.cs index 582d51bbc4..8342167040 100644 --- a/Lib9c/Action/RedeemCode2.cs +++ b/Lib9c/Action/RedeemCode2.cs @@ -91,6 +91,7 @@ public override IAccount Execute(IActionContext context) var row = states.GetSheet().Values.First(r => r.Id == redeemId); var itemSheets = states.GetItemSheet(); + var random = context.GetRandom(); foreach (RedeemRewardSheet.RewardInfo info in row.Rewards) { switch (info.Type) @@ -100,7 +101,7 @@ public override IAccount Execute(IActionContext context) { if (info.ItemId is int itemId) { - ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], context.Random); + ItemBase item = ItemFactory.CreateItem(itemSheets[itemId], random); // We should fix count as 1 because ItemFactory.CreateItem // will create a new item every time. avatarState.inventory.AddItem2(item, count: 1); diff --git a/Lib9c/Action/RegisterProduct.cs b/Lib9c/Action/RegisterProduct.cs index 01f50bea02..41c1730a22 100644 --- a/Lib9c/Action/RegisterProduct.cs +++ b/Lib9c/Action/RegisterProduct.cs @@ -74,9 +74,11 @@ public override IAccount Execute(IActionContext context) marketState.AvatarAddresses.Add(AvatarAddress); states = states.SetState(Addresses.Market, marketState.Serialize()); } + + var random = context.GetRandom(); foreach (var info in RegisterInfos.OrderBy(r => r.Type).ThenBy(r => r.Price)) { - states = Register(context, info, avatarState, productsState, states); + states = Register(context, info, avatarState, productsState, states, random); } states = states @@ -94,7 +96,7 @@ public override IAccount Execute(IActionContext context) } public static IAccount Register(IActionContext context, IRegisterInfo info, AvatarState avatarState, - ProductsState productsState, IAccount states) + ProductsState productsState, IAccount states, IRandom random) { switch (info) { @@ -165,7 +167,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat throw new ItemDoesNotExistException($"can't find item: {tradableId}"); } - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); var product = new ItemProduct { ProductId = productId, @@ -187,7 +189,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat break; case AssetInfo assetInfo: { - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); Address productAddress = Product.DeriveAddress(productId); FungibleAssetValue asset = assetInfo.Asset; var product = new FavProduct diff --git a/Lib9c/Action/RegisterProduct0.cs b/Lib9c/Action/RegisterProduct0.cs index 41a9c2286b..b3ffeeab31 100644 --- a/Lib9c/Action/RegisterProduct0.cs +++ b/Lib9c/Action/RegisterProduct0.cs @@ -85,9 +85,11 @@ public override IAccount Execute(IActionContext context) marketState.AvatarAddresses.Add(AvatarAddress); states = states.SetState(Addresses.Market, marketState.Serialize()); } + + var random = context.GetRandom(); foreach (var info in RegisterInfos.OrderBy(r => r.Type).ThenBy(r => r.Price)) { - states = Register(context, info, avatarState, productsState, states); + states = Register(context, info, avatarState, productsState, states, random); } states = states @@ -105,7 +107,7 @@ public override IAccount Execute(IActionContext context) } public static IAccount Register(IActionContext context, IRegisterInfo info, AvatarState avatarState, - ProductsState productsState, IAccount states) + ProductsState productsState, IAccount states, IRandom random) { switch (info) { @@ -176,7 +178,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat throw new ItemDoesNotExistException($"can't find item: {tradableId}"); } - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); var product = new ItemProduct { ProductId = productId, @@ -198,7 +200,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat break; case AssetInfo assetInfo: { - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); Address productAddress = Product.DeriveAddress(productId); FungibleAssetValue asset = assetInfo.Asset; var product = new FavProduct diff --git a/Lib9c/Action/RegisterProduct2.cs b/Lib9c/Action/RegisterProduct2.cs index eea1a1beb5..ebe4cc3d19 100644 --- a/Lib9c/Action/RegisterProduct2.cs +++ b/Lib9c/Action/RegisterProduct2.cs @@ -30,6 +30,7 @@ public override IAccount Execute(IActionContext context) { context.UseGas(1); var states = context.PreviousState; + var random = context.GetRandom(); if (context.Rehearsal) { return states; @@ -87,7 +88,7 @@ public override IAccount Execute(IActionContext context) } foreach (var info in RegisterInfos.OrderBy(r => r.Type).ThenBy(r => r.Price)) { - states = Register(context, info, avatarState, productsState, states); + states = Register(context, info, avatarState, productsState, states, random); } states = states @@ -105,7 +106,7 @@ public override IAccount Execute(IActionContext context) } public static IAccount Register(IActionContext context, IRegisterInfo info, AvatarState avatarState, - ProductsState productsState, IAccount states) + ProductsState productsState, IAccount states, IRandom random) { switch (info) { @@ -176,7 +177,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat throw new ItemDoesNotExistException($"can't find item: {tradableId}"); } - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); var product = new ItemProduct { ProductId = productId, @@ -198,7 +199,7 @@ public static IAccount Register(IActionContext context, IRegisterInfo info, Avat break; case AssetInfo assetInfo: { - Guid productId = context.Random.GenerateRandomGuid(); + Guid productId = random.GenerateRandomGuid(); Address productAddress = Product.DeriveAddress(productId); FungibleAssetValue asset = assetInfo.Asset; var product = new FavProduct diff --git a/Lib9c/Action/RuneEnhancement.cs b/Lib9c/Action/RuneEnhancement.cs index 68190bcbe3..232eaba627 100644 --- a/Lib9c/Action/RuneEnhancement.cs +++ b/Lib9c/Action/RuneEnhancement.cs @@ -112,9 +112,10 @@ public override IAccount Execute(IActionContext context) var ncgBalance = states.GetBalance(context.Signer, ncgCurrency); var crystalBalance = states.GetBalance(context.Signer, crystalCurrency); var runeBalance = states.GetBalance(AvatarAddress, runeCurrency); + var random = context.GetRandom(); if (RuneHelper.TryEnhancement(ncgBalance, crystalBalance, runeBalance, ncgCurrency, crystalCurrency, runeCurrency, - cost, context.Random, TryCount, out var tryCount)) + cost, random, TryCount, out var tryCount)) { runeState.LevelUp(); states = states.SetState(runeStateAddress, runeState.Serialize()); diff --git a/Lib9c/Action/RuneEnhancement0.cs b/Lib9c/Action/RuneEnhancement0.cs index 3624397afc..b6ffcf007a 100644 --- a/Lib9c/Action/RuneEnhancement0.cs +++ b/Lib9c/Action/RuneEnhancement0.cs @@ -109,9 +109,10 @@ public override IAccount Execute(IActionContext context) var ncgBalance = states.GetBalance(context.Signer, ncgCurrency); var crystalBalance = states.GetBalance(context.Signer, crystalCurrency); var runeBalance = states.GetBalance(AvatarAddress, runeCurrency); + var random = context.GetRandom(); if (RuneHelper.TryEnhancement(ncgBalance, crystalBalance, runeBalance, ncgCurrency, crystalCurrency, runeCurrency, - cost, context.Random, TryCount, out var tryCount)) + cost, random, TryCount, out var tryCount)) { runeState.LevelUp(); states = states.SetState(runeStateAddress, runeState.Serialize()); diff --git a/Lib9c/Action/Sell0.cs b/Lib9c/Action/Sell0.cs index 70a0b7358c..e5e3365376 100644 --- a/Lib9c/Action/Sell0.cs +++ b/Lib9c/Action/Sell0.cs @@ -116,7 +116,8 @@ public override IAccount Execute(IActionContext context) equipment.equipped = false; } - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); var shopItem = new ShopItem( ctx.Signer, diff --git a/Lib9c/Action/Sell2.cs b/Lib9c/Action/Sell2.cs index 00edc9ed0a..a803364f52 100644 --- a/Lib9c/Action/Sell2.cs +++ b/Lib9c/Action/Sell2.cs @@ -97,7 +97,8 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Execute Sell; seller: {SellerAvatarAddress}", addressesHex, sellerAvatarAddress); - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); ShopItem shopItem; // 인벤토리에서 판매할 아이템을 선택하고 수량을 조절한다. diff --git a/Lib9c/Action/Sell3.cs b/Lib9c/Action/Sell3.cs index eb8b48d6f1..915cf54eb3 100644 --- a/Lib9c/Action/Sell3.cs +++ b/Lib9c/Action/Sell3.cs @@ -97,7 +97,8 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Execute Sell; seller: {SellerAvatarAddress}", addressesHex, sellerAvatarAddress); - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); ShopItem shopItem; void CheckRequiredBlockIndex(ItemUsable itemUsable) diff --git a/Lib9c/Action/Sell4.cs b/Lib9c/Action/Sell4.cs index 6e96c2e850..aed2c6dcab 100644 --- a/Lib9c/Action/Sell4.cs +++ b/Lib9c/Action/Sell4.cs @@ -99,7 +99,8 @@ public override IAccount Execute(IActionContext context) Log.Verbose("{AddressesHex}Execute Sell; seller: {SellerAvatarAddress}", addressesHex, sellerAvatarAddress); - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); long expiredBlockIndex = context.BlockIndex + ExpiredBlockIndex; // Select an item to sell from the inventory and adjust the quantity. @@ -200,7 +201,7 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, costume = shopItem.Costume }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), expiredBlockIndex); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), expiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/Sell5.cs b/Lib9c/Action/Sell5.cs index 6356d5ed4c..8522389158 100644 --- a/Lib9c/Action/Sell5.cs +++ b/Lib9c/Action/Sell5.cs @@ -165,7 +165,8 @@ public override IAccount Execute(IActionContext context) ITradableItem tradableItem = avatarState.inventory.SellItem(tradableId, context.BlockIndex, count); - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); var shardedShopAddress = ShardedShopState.DeriveAddress(itemSubType, productId); if (!states.TryGetState(shardedShopAddress, out BxDictionary serializedSharedShopState)) { @@ -299,7 +300,7 @@ public override IAccount Execute(IActionContext context) var mail = new SellCancelMail( result, context.BlockIndex, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), expiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/Sell6.cs b/Lib9c/Action/Sell6.cs index 2735ffaef7..c277ca8642 100644 --- a/Lib9c/Action/Sell6.cs +++ b/Lib9c/Action/Sell6.cs @@ -164,7 +164,8 @@ public override IAccount Execute(IActionContext context) ITradableItem tradableItem = avatarState.inventory.SellItem(tradableId, context.BlockIndex, count); - var productId = context.Random.GenerateRandomGuid(); + var random = context.GetRandom(); + var productId = random.GenerateRandomGuid(); var shardedShopAddress = ShardedShopState.DeriveAddress(itemSubType, productId); if (!states.TryGetState(shardedShopAddress, out BxDictionary serializedSharedShopState)) { @@ -276,7 +277,7 @@ public override IAccount Execute(IActionContext context) var mail = new SellCancelMail( result, context.BlockIndex, - context.Random.GenerateRandomGuid(), + random.GenerateRandomGuid(), expiredBlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/SellCancellation0.cs b/Lib9c/Action/SellCancellation0.cs index 65794d8c77..9a28038895 100644 --- a/Lib9c/Action/SellCancellation0.cs +++ b/Lib9c/Action/SellCancellation0.cs @@ -116,7 +116,8 @@ public override IAccount Execute(IActionContext context) shopItem = outUnregisteredItem, itemUsable = outUnregisteredItem.ItemUsable }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; avatarState.Update2(mail); diff --git a/Lib9c/Action/SellCancellation2.cs b/Lib9c/Action/SellCancellation2.cs index 03669c88ea..befb7a492f 100644 --- a/Lib9c/Action/SellCancellation2.cs +++ b/Lib9c/Action/SellCancellation2.cs @@ -116,7 +116,8 @@ public override IAccount Execute(IActionContext context) shopItem = outUnregisteredItem, itemUsable = outUnregisteredItem.ItemUsable }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; avatarState.Update3(mail); diff --git a/Lib9c/Action/SellCancellation3.cs b/Lib9c/Action/SellCancellation3.cs index 7ef5a7fdb4..8bd5e03a9b 100644 --- a/Lib9c/Action/SellCancellation3.cs +++ b/Lib9c/Action/SellCancellation3.cs @@ -117,7 +117,8 @@ public override IAccount Execute(IActionContext context) itemUsable = outUnregisteredItem.ItemUsable, costume = outUnregisteredItem.Costume }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; avatarState.Update2(mail); diff --git a/Lib9c/Action/SellCancellation4.cs b/Lib9c/Action/SellCancellation4.cs index dbe22a2e22..11d93e4f16 100644 --- a/Lib9c/Action/SellCancellation4.cs +++ b/Lib9c/Action/SellCancellation4.cs @@ -117,7 +117,8 @@ public override IAccount Execute(IActionContext context) itemUsable = outUnregisteredItem.ItemUsable, costume = outUnregisteredItem.Costume }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/SellCancellation5.cs b/Lib9c/Action/SellCancellation5.cs index dfab914dce..710a3a4b74 100644 --- a/Lib9c/Action/SellCancellation5.cs +++ b/Lib9c/Action/SellCancellation5.cs @@ -172,7 +172,8 @@ public override IAccount Execute(IActionContext context) itemUsable = shopItem.ItemUsable, costume = shopItem.Costume }; - var mail = new SellCancelMail(result, ctx.BlockIndex, ctx.Random.GenerateRandomGuid(), ctx.BlockIndex); + var random = ctx.GetRandom(); + var mail = new SellCancelMail(result, ctx.BlockIndex, random.GenerateRandomGuid(), ctx.BlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/SellCancellation6.cs b/Lib9c/Action/SellCancellation6.cs index f7b0d065d1..c275c47dff 100644 --- a/Lib9c/Action/SellCancellation6.cs +++ b/Lib9c/Action/SellCancellation6.cs @@ -205,7 +205,8 @@ public override IAccount Execute(IActionContext context) tradableFungibleItem = shopItem.TradableFungibleItem, tradableFungibleItemCount = shopItem.TradableFungibleItemCount, }; - var mail = new SellCancelMail(result, context.BlockIndex, context.Random.GenerateRandomGuid(), context.BlockIndex); + var random = context.GetRandom(); + var mail = new SellCancelMail(result, context.BlockIndex, random.GenerateRandomGuid(), context.BlockIndex); result.id = mail.id; avatarState.Update(mail); diff --git a/Lib9c/Action/Stake.cs b/Lib9c/Action/Stake.cs index 8e3d96f27e..03598da395 100644 --- a/Lib9c/Action/Stake.cs +++ b/Lib9c/Action/Stake.cs @@ -49,7 +49,7 @@ public override IAccount Execute(IActionContext context) { var started = DateTimeOffset.UtcNow; context.UseGas(1); - var states = context.PreviousState; + IAccount states = context.PreviousState; // NOTE: Restrict staking if there is a monster collection until now. if (states.GetAgentState(context.Signer) is { } agentState && diff --git a/Lib9c/Model/Stake/StakeStateUtils.cs b/Lib9c/Model/Stake/StakeStateUtils.cs index 9d27c29ae9..32bf8c4fb4 100644 --- a/Lib9c/Model/Stake/StakeStateUtils.cs +++ b/Lib9c/Model/Stake/StakeStateUtils.cs @@ -13,33 +13,59 @@ public static bool TryMigrate( Address stakeStateAddr, out StakeStateV2 stakeStateV2) { - var serialized = state.GetState(stakeStateAddr); - if (serialized is null or Null) + var nullableStateState = + Migrate(state.GetState(stakeStateAddr), state.GetGameConfigState()); + if (nullableStateState is null) { stakeStateV2 = default; return false; } + stakeStateV2 = nullableStateState.Value; + return true; + } + + public static bool TryMigrate( + IValue serialized, + GameConfigState gameConfigState, + out StakeStateV2 stakeStateV2) + { + var nullableStateState = Migrate(serialized, gameConfigState); + if (nullableStateState is null) + { + stakeStateV2 = default; + return false; + } + + stakeStateV2 = nullableStateState.Value; + return true; + } + + public static StakeStateV2? Migrate( + IValue serialized, + GameConfigState gameConfigState) + { + if (serialized is null or Null) + { + return null; + } + // NOTE: StakeStateV2 is serialized as Bencodex List. if (serialized is List list) { - stakeStateV2 = new StakeStateV2(list); - return true; + return new StakeStateV2(list); } // NOTE: StakeState is serialized as Bencodex Dictionary. if (serialized is not Dictionary dict) { - stakeStateV2 = default; - return false; + return null; } // NOTE: Migration needs GameConfigState. - var gameConfigState = state.GetGameConfigState(); if (gameConfigState is null) { - stakeStateV2 = default; - return false; + return null; } // NOTE: Below is the migration logic from StakeState to StakeStateV2. @@ -92,14 +118,13 @@ public static bool TryMigrate( stakeRegularRewardSheetTableName = "StakeRegularRewardSheet_V5"; } - stakeStateV2 = new StakeStateV2( + return new StakeStateV2( stakeStateV1, new Contract( stakeRegularFixedRewardSheetTableName: stakeRegularFixedRewardSheetTableName, stakeRegularRewardSheetTableName: stakeRegularRewardSheetTableName, rewardInterval: StakeState.RewardInterval, lockupInterval: StakeState.LockupInterval)); - return true; } } } diff --git a/Lib9c/SerializeKeys.cs b/Lib9c/SerializeKeys.cs index f1e5daebab..b7cd9dda83 100644 --- a/Lib9c/SerializeKeys.cs +++ b/Lib9c/SerializeKeys.cs @@ -174,5 +174,8 @@ public static class SerializeKeys // Grand Finale public const string GrandFinaleIdKey = "gfi"; + + // ClaimItems + public const string ClaimDataKey = "cd"; } } diff --git a/Lib9c/TableCSV/Arena/ArenaSheet.csv b/Lib9c/TableCSV/Arena/ArenaSheet.csv index c4e250ef26..effe98fb7b 100644 --- a/Lib9c/TableCSV/Arena/ArenaSheet.csv +++ b/Lib9c/TableCSV/Arena/ArenaSheet.csv @@ -18,24 +18,48 @@ id,round,arena_type,start_block_index,end_block_index,required_medal_count,entra 3,1,OffSeason,5700401,5801200,0,0,5,2,80,8 3,2,Season,5801201,5902000,0,1,50,20,80,8 3,3,OffSeason,5902001,6002800,0,0,5,2,80,8 -3,4,Season,6002801,6103600,0,1,50,20,80,8 -3,5,OffSeason,6103601,6204400,0,0,5,2,80,8 +3,4,Season,6002801,6103600,0,1,50,20,40,8 +3,5,OffSeason,6103601,6204400,0,0,5,2,40,8 3,6,Championship,6204401,6305200,160,2,100,40,40,8 -4,1,OffSeason,6305201,6406000,0,0,5,2,80,8 -4,2,Season,6406001,6506800,0,1,50,20,80,8 -4,3,OffSeason,6506801,6607600,0,0,5,2,80,8 -4,4,Season,6607601,6708400,0,1,50,20,80,8 -4,5,OffSeason,6708401,6809200,0,0,5,2,80,8 -4,6,Championship,6809201,6910000,160,2,100,40,40,8 -5,1,OffSeason,6910001,7010800,0,0,5,2,80,8 -5,2,Season,7010801,7111600,0,1,50,20,80,8 -5,3,OffSeason,7111601,7212400,0,0,5,2,80,8 -5,4,Season,7212401,7313200,0,1,50,20,80,8 -5,5,OffSeason,7313201,7414000,0,0,5,2,80,8 -5,6,Championship,7414001,7514800,160,2,100,40,40,8 -6,1,OffSeason,7514801,7615600,0,0,5,2,80,8 -6,2,Season,7615601,7716400,0,1,50,20,80,8 -6,3,OffSeason,7716401,7817200,0,0,5,2,80,8 -6,4,Season,7817201,7918000,0,1,50,20,80,8 -6,5,OffSeason,7918001,8018800,0,0,5,2,80,8 -6,6,Championship,8018801,8119600,160,2,100,40,40,8 \ No newline at end of file +4,1,OffSeason,6305201,6506800,0,0,5,2,40,8 +4,2,Season,6506801,6607600,0,1,50,20,40,8 +4,3,OffSeason,6607601,6708400,0,0,5,2,40,8 +4,4,Season,6708401,6809200,0,1,50,20,40,8 +4,5,OffSeason,6809201,6910000,0,0,5,2,40,8 +4,6,Championship,6910001,7010800,160,2,100,40,40,8 +5,1,OffSeason,7010801,7111600,0,0,5,2,40,8 +5,2,Season,7111601,7212400,0,1,50,20,40,8 +5,3,OffSeason,7212401,7313200,0,0,5,2,40,8 +5,4,Season,7313201,7414000,0,1,50,20,40,8 +5,5,OffSeason,7414001,7514800,0,0,5,2,40,8 +5,6,Championship,7514801,7615600,160,2,100,40,40,8 +6,1,OffSeason,7615601,7716400,0,0,5,2,40,8 +6,2,Season,7716401,7817200,0,1,50,20,40,8 +6,3,OffSeason,7817201,7918000,0,0,5,2,40,8 +6,4,Season,7918001,8018800,0,1,50,20,40,8 +6,5,OffSeason,8018801,8119600,0,0,5,2,40,8 +6,6,Championship,8119601,8220400,160,2,100,40,40,8 +7,1,OffSeason,8220401,8341360,0,0,5,2,40,8 +7,2,Season,8341361,8462320,0,1,50,20,40,8 +7,3,OffSeason,8462321,8583280,0,0,5,2,40,8 +7,4,Season,8583281,8704240,0,1,50,20,40,8 +7,5,OffSeason,8704241,8825200,0,0,5,2,40,8 +7,6,Championship,8825201,8946160,160,2,100,40,40,8 +8,1,OffSeason,8946161,9067120,0,0,5,2,40,8 +8,2,Season,9067121,9188080,0,1,50,20,40,8 +8,3,OffSeason,9188081,9309040,0,0,5,2,40,8 +8,4,Season,9309041,9430000,0,1,50,20,40,8 +8,5,OffSeason,9430001,9550960,0,0,5,2,40,8 +8,6,Championship,9550961,9671920,160,2,100,40,40,8 +9,1,OffSeason,9671921,9792880,0,0,5,2,40,8 +9,2,Season,9792881,9913840,0,1,50,20,40,8 +9,3,OffSeason,9913841,10034800,0,0,5,2,40,8 +9,4,Season,10034801,10155760,0,1,50,20,40,8 +9,5,OffSeason,10155761,10276720,0,0,5,2,40,8 +9,6,Championship,10276721,10397680,160,2,100,40,40,8 +10,1,OffSeason,10397681,10518640,0,0,5,2,40,8 +10,2,Season,10518641,10639600,0,1,50,20,40,8 +10,3,OffSeason,10639601,10760560,0,0,5,2,40,8 +10,4,Season,10760561,10881520,0,1,50,20,40,8 +10,5,OffSeason,10881521,11002480,0,0,5,2,40,8 +10,6,Championship,11002481,11123440,160,2,100,40,40,8 diff --git a/Lib9c/TableCSV/Character/CharacterLevelSheet.csv b/Lib9c/TableCSV/Character/CharacterLevelSheet.csv index bb1ad184dd..2510cdd696 100644 --- a/Lib9c/TableCSV/Character/CharacterLevelSheet.csv +++ b/Lib9c/TableCSV/Character/CharacterLevelSheet.csv @@ -199,203 +199,203 @@ level,exp,exp_need 198,19500,100 199,19600,100 200,19700,100 -201,19800,500 -202,20300,300 -203,20600,300 -204,20900,300 -205,21200,300 -206,21500,300 -207,21800,300 -208,22100,300 -209,22400,300 -210,22700,300 -211,23000,300 -212,23300,300 -213,23600,300 -214,23900,300 -215,24200,300 -216,24500,300 -217,24800,300 -218,25100,300 -219,25400,300 -220,25700,300 -221,26000,300 -222,26300,300 -223,26600,300 -224,26900,300 -225,27200,300 -226,27500,300 -227,27800,300 -228,28100,300 -229,28400,300 -230,28700,300 -231,29000,300 -232,29300,300 -233,29600,300 -234,29900,300 -235,30200,300 -236,30500,300 -237,30800,300 -238,31100,300 -239,31400,300 -240,31700,300 -241,32000,300 -242,32300,300 -243,32600,300 -244,32900,300 -245,33200,300 -246,33500,300 -247,33800,300 -248,34100,300 -249,34400,300 -250,34700,300 -251,35000,300 -252,35300,300 -253,35600,300 -254,35900,300 -255,36200,300 -256,36500,300 -257,36800,300 -258,37100,300 -259,37400,300 -260,37700,300 -261,38000,300 -262,38300,300 -263,38600,300 -264,38900,300 -265,39200,300 -266,39500,300 -267,39800,300 -268,40100,300 -269,40400,300 -270,40700,300 -271,41000,300 -272,41300,300 -273,41600,300 -274,41900,300 -275,42200,300 -276,42500,300 -277,42800,300 -278,43100,300 -279,43400,300 -280,43700,300 -281,44000,300 -282,44300,300 -283,44600,300 -284,44900,300 -285,45200,300 -286,45500,300 -287,45800,300 -288,46100,300 -289,46400,300 -290,46700,300 -291,47000,300 -292,47300,300 -293,47600,300 -294,47900,300 -295,48200,300 -296,48500,300 -297,48800,300 -298,49100,300 -299,49400,300 -300,49700,600 -301,50300,600 -302,50900,600 -303,51500,600 -304,52100,600 -305,52700,600 -306,53300,600 -307,53900,600 -308,54500,600 -309,55100,600 -310,55700,600 -311,56300,600 -312,56900,600 -313,57500,600 -314,58100,600 -315,58700,600 -316,59300,600 -317,59900,600 -318,60500,600 -319,61100,600 -320,61700,600 -321,62300,600 -322,62900,600 -323,63500,600 -324,64100,600 -325,64700,600 -326,65300,600 -327,65900,600 -328,66500,600 -329,67100,600 -330,67700,600 -331,68300,600 -332,68900,600 -333,69500,600 -334,70100,600 -335,70700,600 -336,71300,600 -337,71900,600 -338,72500,600 -339,73100,600 -340,73700,600 -341,74300,600 -342,74900,600 -343,75500,600 -344,76100,600 -345,76700,600 -346,77300,600 -347,77900,600 -348,78500,600 -349,79100,600 -350,79700,600 -351,80300,600 -352,80900,600 -353,81500,600 -354,82100,600 -355,82700,600 -356,83300,600 -357,83900,600 -358,84500,600 -359,85100,600 -360,85700,600 -361,86300,600 -362,86900,600 -363,87500,600 -364,88100,600 -365,88700,600 -366,89300,600 -367,89900,600 -368,90500,600 -369,91100,600 -370,91700,600 -371,92300,600 -372,92900,600 -373,93500,600 -374,94100,600 -375,94700,600 -376,95300,600 -377,95900,600 -378,96500,600 -379,97100,600 -380,97700,600 -381,98300,600 -382,98900,600 -383,99500,600 -384,100100,600 -385,100700,600 -386,101300,600 -387,101900,600 -388,102500,600 -389,103100,600 -390,103700,600 -391,104300,600 -392,104900,600 -393,105500,600 -394,106100,600 -395,106700,600 -396,107300,600 -397,107900,600 -398,108500,600 -399,109100,600 -400,109700,600 \ No newline at end of file +201,19800,300 +202,20100,300 +203,20400,300 +204,20700,300 +205,21000,300 +206,21300,300 +207,21600,300 +208,21900,300 +209,22200,300 +210,22500,300 +211,22800,300 +212,23100,300 +213,23400,300 +214,23700,300 +215,24000,300 +216,24300,300 +217,24600,300 +218,24900,300 +219,25200,300 +220,25500,300 +221,25800,300 +222,26100,300 +223,26400,300 +224,26700,300 +225,27000,300 +226,27300,300 +227,27600,300 +228,27900,300 +229,28200,300 +230,28500,300 +231,28800,300 +232,29100,300 +233,29400,300 +234,29700,300 +235,30000,300 +236,30300,300 +237,30600,300 +238,30900,300 +239,31200,300 +240,31500,300 +241,31800,300 +242,32100,300 +243,32400,300 +244,32700,300 +245,33000,300 +246,33300,300 +247,33600,300 +248,33900,300 +249,34200,300 +250,34500,300 +251,34800,300 +252,35100,300 +253,35400,300 +254,35700,300 +255,36000,300 +256,36300,300 +257,36600,300 +258,36900,300 +259,37200,300 +260,37500,300 +261,37800,300 +262,38100,300 +263,38400,300 +264,38700,300 +265,39000,300 +266,39300,300 +267,39600,300 +268,39900,300 +269,40200,300 +270,40500,300 +271,40800,300 +272,41100,300 +273,41400,300 +274,41700,300 +275,42000,300 +276,42300,300 +277,42600,300 +278,42900,300 +279,43200,300 +280,43500,300 +281,43800,300 +282,44100,300 +283,44400,300 +284,44700,300 +285,45000,300 +286,45300,300 +287,45600,300 +288,45900,300 +289,46200,300 +290,46500,300 +291,46800,300 +292,47100,300 +293,47400,300 +294,47700,300 +295,48000,300 +296,48300,300 +297,48600,300 +298,48900,300 +299,49200,300 +300,49500,600 +301,50100,600 +302,50700,600 +303,51300,600 +304,51900,600 +305,52500,600 +306,53100,600 +307,53700,600 +308,54300,600 +309,54900,600 +310,55500,600 +311,56100,600 +312,56700,600 +313,57300,600 +314,57900,600 +315,58500,600 +316,59100,600 +317,59700,600 +318,60300,600 +319,60900,600 +320,61500,600 +321,62100,600 +322,62700,600 +323,63300,600 +324,63900,600 +325,64500,600 +326,65100,600 +327,65700,600 +328,66300,600 +329,66900,600 +330,67500,600 +331,68100,600 +332,68700,600 +333,69300,600 +334,69900,600 +335,70500,600 +336,71100,600 +337,71700,600 +338,72300,600 +339,72900,600 +340,73500,600 +341,74100,600 +342,74700,600 +343,75300,600 +344,75900,600 +345,76500,600 +346,77100,600 +347,77700,600 +348,78300,600 +349,78900,600 +350,79500,600 +351,80100,600 +352,80700,600 +353,81300,600 +354,81900,600 +355,82500,600 +356,83100,600 +357,83700,600 +358,84300,600 +359,84900,600 +360,85500,600 +361,86100,600 +362,86700,600 +363,87300,600 +364,87900,600 +365,88500,600 +366,89100,600 +367,89700,600 +368,90300,600 +369,90900,600 +370,91500,600 +371,92100,600 +372,92700,600 +373,93300,600 +374,93900,600 +375,94500,600 +376,95100,600 +377,95700,600 +378,96300,600 +379,96900,600 +380,97500,600 +381,98100,600 +382,98700,600 +383,99300,600 +384,99900,600 +385,100500,600 +386,101100,600 +387,101700,600 +388,102300,600 +389,102900,600 +390,103500,600 +391,104100,600 +392,104700,600 +393,105300,600 +394,105900,600 +395,106500,600 +396,107100,600 +397,107700,600 +398,108300,600 +399,108900,600 +400,109500,600 \ No newline at end of file diff --git a/Lib9c/TableCSV/Cost/EnhancementCostSheetV2.csv b/Lib9c/TableCSV/Cost/EnhancementCostSheetV2.csv index 503597b460..6c14d5dc60 100644 --- a/Lib9c/TableCSV/Cost/EnhancementCostSheetV2.csv +++ b/Lib9c/TableCSV/Cost/EnhancementCostSheetV2.csv @@ -3,86 +3,86 @@ id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,s 2,Weapon,1,2,0,7500,2500,0,62,77,50,800,1200,0,0,0,0,0,0 3,Weapon,1,3,0,7500,2500,0,125,156,50,800,1200,0,0,0,0,0,0 4,Weapon,1,4,10,7500,2500,0,625,781,50,800,1200,2500,3500,2500,3500,1200,1800 -5,Weapon,1,5,0,7125,2375,500,925,1156,50,800,1200,0,0,0,0,0,0 -6,Weapon,1,6,0,6750,2250,1000,1300,1625,50,800,1200,0,0,0,0,0,0 -7,Weapon,1,7,20,7125,2375,500,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 -8,Weapon,1,8,0,6750,2250,1000,2975,3718,50,800,1200,600,1000,600,1000,400,600 -9,Weapon,1,9,0,6450,2150,1400,3500,4375,50,800,1200,600,1000,600,1000,400,600 -10,Weapon,1,10,40,7125,2375,500,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 -11,Weapon,1,11,0,6150,2050,1800,5000,6250,50,800,1200,600,1000,600,1000,400,600 -12,Weapon,1,12,0,5925,1975,2100,5250,6562,50,800,1200,600,1000,600,1000,400,600 -13,Weapon,1,13,80,6525,2175,1300,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 -14,Weapon,1,14,0,5700,1900,2400,5750,7187,50,800,1200,600,1000,600,1000,400,600 -15,Weapon,1,15,0,5475,1825,2700,6000,7500,50,800,1200,600,1000,600,1000,400,600 -16,Weapon,1,16,160,6000,2000,2000,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 -17,Weapon,1,17,0,5325,1775,2900,6500,8125,50,800,1200,600,1000,600,1000,400,600 -18,Weapon,1,18,0,5175,1725,3100,6750,8437,50,800,1200,600,1000,600,1000,400,600 -19,Weapon,1,19,320,5625,1875,2500,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 -20,Weapon,1,20,0,3750,1250,5000,7250,9062,50,800,1200,800,1200,800,1200,400,600 -21,Weapon,1,21,0,3750,1250,5000,7500,9375,50,800,1200,800,1200,800,1200,400,600 +5,Weapon,1,5,0,7625,2375,0,925,1156,50,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,0,7750,2250,0,1300,1625,50,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,20,7625,2375,0,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,0,7750,2250,0,2975,3718,50,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,0,7850,2150,0,3500,4375,50,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,40,7625,2375,0,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,0,7950,2050,0,5000,6250,50,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,0,8025,1975,0,5250,6562,50,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,80,7825,2175,0,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,0,8100,1900,0,5750,7187,50,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,0,8175,1825,0,6000,7500,50,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,160,8000,2000,0,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,0,8225,1775,0,6500,8125,50,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,0,8275,1725,0,6750,8437,50,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,320,8125,1875,0,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,0,8750,1250,0,7250,9062,50,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,0,8750,1250,0,7500,9375,50,800,1200,800,1200,800,1200,400,600 22,Weapon,2,1,0,7500,2500,0,37,46,50,800,1200,0,0,0,0,0,0 23,Weapon,2,2,0,7500,2500,0,93,116,50,800,1200,0,0,0,0,0,0 24,Weapon,2,3,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 25,Weapon,2,4,20,7500,2500,0,937,1171,50,800,1200,2500,3500,2500,3500,1200,1800 -26,Weapon,2,5,0,7125,2375,500,1387,1733,50,800,1200,0,0,0,0,0,0 -27,Weapon,2,6,0,6750,2250,1000,1950,2437,50,800,1200,0,0,0,0,0,0 -28,Weapon,2,7,40,7125,2375,500,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 -29,Weapon,2,8,0,6750,2250,1000,4462,5577,50,800,1200,600,1000,600,1000,400,600 -30,Weapon,2,9,0,6450,2150,1400,5250,6562,50,800,1200,600,1000,600,1000,400,600 -31,Weapon,2,10,80,7125,2375,500,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 -32,Weapon,2,11,0,6150,2050,1800,7500,9375,50,800,1200,600,1000,600,1000,400,600 -33,Weapon,2,12,0,5925,1975,2100,7875,9843,50,800,1200,600,1000,600,1000,400,600 -34,Weapon,2,13,160,6525,2175,1300,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 -35,Weapon,2,14,0,5700,1900,2400,8625,10781,50,800,1200,600,1000,600,1000,400,600 -36,Weapon,2,15,0,5475,1825,2700,9000,11250,50,800,1200,600,1000,600,1000,400,600 -37,Weapon,2,16,320,6000,2000,2000,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 -38,Weapon,2,17,0,5325,1775,2900,9750,12187,50,800,1200,600,1000,600,1000,400,600 -39,Weapon,2,18,0,5175,1725,3100,10125,12656,50,800,1200,600,1000,600,1000,400,600 -40,Weapon,2,19,640,5625,1875,2500,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 -41,Weapon,2,20,0,3750,1250,5000,10875,13593,50,800,1200,800,1200,800,1200,400,600 -42,Weapon,2,21,0,3750,1250,5000,11250,14062,50,800,1200,800,1200,800,1200,400,600 +26,Weapon,2,5,0,7625,2375,0,1387,1733,50,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,0,7750,2250,0,1950,2437,50,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,40,7625,2375,0,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,0,7750,2250,0,4462,5577,50,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,0,7850,2150,0,5250,6562,50,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,80,7625,2375,0,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,0,7950,2050,0,7500,9375,50,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,0,8025,1975,0,7875,9843,50,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,160,7825,2175,0,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,0,8100,1900,0,8625,10781,50,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,0,8175,1825,0,9000,11250,50,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,320,8000,2000,0,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,0,8225,1775,0,9750,12187,50,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,0,8275,1725,0,10125,12656,50,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,640,8125,1875,0,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,0,8750,1250,0,10875,13593,50,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,0,8750,1250,0,11250,14062,50,800,1200,800,1200,800,1200,400,600 43,Weapon,3,1,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 44,Weapon,3,2,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 45,Weapon,3,3,0,7500,2500,0,375,468,50,800,1200,0,0,0,0,0,0 46,Weapon,3,4,30,7500,2500,0,1875,2343,50,800,1200,2500,3500,2500,3500,1200,1800 -47,Weapon,3,5,0,7125,2375,500,2775,3468,50,800,1200,0,0,0,0,0,0 -48,Weapon,3,6,0,6750,2250,1000,3900,4875,50,800,1200,0,0,0,0,0,0 -49,Weapon,3,7,60,7125,2375,500,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 -50,Weapon,3,8,0,6750,2250,1000,8925,11156,50,800,1200,600,1000,600,1000,400,600 -51,Weapon,3,9,0,6450,2150,1400,10500,13125,50,800,1200,600,1000,600,1000,400,600 -52,Weapon,3,10,120,7125,2375,500,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 -53,Weapon,3,11,0,6150,2050,1800,15000,18750,50,800,1200,600,1000,600,1000,400,600 -54,Weapon,3,12,0,5925,1975,2100,15750,19687,50,800,1200,600,1000,600,1000,400,600 -55,Weapon,3,13,240,6525,2175,1300,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 -56,Weapon,3,14,0,5700,1900,2400,17250,21562,50,800,1200,600,1000,600,1000,400,600 -57,Weapon,3,15,0,5475,1825,2700,18000,22500,50,800,1200,600,1000,600,1000,400,600 -58,Weapon,3,16,480,6000,2000,2000,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 -59,Weapon,3,17,0,5325,1775,2900,19500,24375,50,800,1200,600,1000,600,1000,400,600 -60,Weapon,3,18,0,5175,1725,3100,20250,25312,50,800,1200,600,1000,600,1000,400,600 -61,Weapon,3,19,960,5625,1875,2500,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 -62,Weapon,3,20,0,3750,1250,5000,21750,27187,50,800,1200,800,1200,800,1200,400,600 -63,Weapon,3,21,0,3750,1250,5000,22500,28125,50,800,1200,800,1200,800,1200,400,600 +47,Weapon,3,5,0,7625,2375,0,2775,3468,50,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,0,7750,2250,0,3900,4875,50,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,60,7625,2375,0,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,0,7750,2250,0,8925,11156,50,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,0,7850,2150,0,10500,13125,50,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,120,7625,2375,0,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,0,7950,2050,0,15000,18750,50,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,0,8025,1975,0,15750,19687,50,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,240,7825,2175,0,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,0,8100,1900,0,17250,21562,50,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,0,8175,1825,0,18000,22500,50,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,480,8000,2000,0,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,0,8225,1775,0,19500,24375,50,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,0,8275,1725,0,20250,25312,50,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,960,8125,1875,0,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,0,8750,1250,0,21750,27187,50,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,0,8750,1250,0,22500,28125,50,800,1200,800,1200,800,1200,400,600 64,Weapon,4,1,0,7500,2500,0,162,202,50,800,1200,0,0,0,0,0,0 65,Weapon,4,2,0,7500,2500,0,406,507,50,800,1200,0,0,0,0,0,0 66,Weapon,4,3,0,7500,2500,0,812,1015,50,800,1200,0,0,0,0,0,0 67,Weapon,4,4,40,7500,2500,0,4062,5077,50,800,1200,2500,3500,2500,3500,1200,1800 -68,Weapon,4,5,0,7125,2375,500,6012,7515,50,800,1200,0,0,0,0,0,0 -69,Weapon,4,6,0,6750,2250,1000,8450,10562,50,800,1200,0,0,0,0,0,0 -70,Weapon,4,7,80,7125,2375,500,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 -71,Weapon,4,8,0,6750,2250,1000,19337,24171,50,800,1200,600,1000,600,1000,400,600 -72,Weapon,4,9,0,6450,2150,1400,22750,28437,50,800,1200,600,1000,600,1000,400,600 -73,Weapon,4,10,160,7125,2375,500,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 -74,Weapon,4,11,0,6150,2050,1800,32500,40625,50,800,1200,600,1000,600,1000,400,600 -75,Weapon,4,12,0,5925,1975,2100,34125,42656,50,800,1200,600,1000,600,1000,400,600 -76,Weapon,4,13,320,6525,2175,1300,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 -77,Weapon,4,14,0,5700,1900,2400,37375,46718,50,800,1200,600,1000,600,1000,400,600 -78,Weapon,4,15,0,5475,1825,2700,39000,48750,50,800,1200,600,1000,600,1000,400,600 -79,Weapon,4,16,640,6000,2000,2000,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 -80,Weapon,4,17,0,5325,1775,2900,42250,52812,50,800,1200,600,1000,600,1000,400,600 -81,Weapon,4,18,0,5175,1725,3100,43875,54843,50,800,1200,600,1000,600,1000,400,600 -82,Weapon,4,19,1280,5625,1875,2500,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 -83,Weapon,4,20,0,3750,1250,5000,47125,58906,50,800,1200,800,1200,800,1200,400,600 -84,Weapon,4,21,0,3750,1250,5000,48750,60937,50,800,1200,800,1200,800,1200,400,600 +68,Weapon,4,5,0,7625,2375,0,6012,7515,50,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,0,7750,2250,0,8450,10562,50,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,80,7625,2375,0,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,0,7750,2250,0,19337,24171,50,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,0,7850,2150,0,22750,28437,50,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,160,7625,2375,0,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,0,7950,2050,0,32500,40625,50,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,0,8025,1975,0,34125,42656,50,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,320,7825,2175,0,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,0,8100,1900,0,37375,46718,50,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,0,8175,1825,0,39000,48750,50,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,640,8000,2000,0,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,0,8225,1775,0,42250,52812,50,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,0,8275,1725,0,43875,54843,50,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,1280,8125,1875,0,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,0,8750,1250,0,47125,58906,50,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,0,8750,1250,0,48750,60937,50,800,1200,800,1200,800,1200,400,600 85,Weapon,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 86,Weapon,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 87,Weapon,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 @@ -108,86 +108,86 @@ id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,s 107,Armor,1,2,0,7500,2500,0,50,62,50,800,1200,0,0,0,0,0,0 108,Armor,1,3,0,7500,2500,0,100,125,50,800,1200,0,0,0,0,0,0 109,Armor,1,4,10,7500,2500,0,500,625,50,800,1200,2500,3500,2500,3500,1200,1800 -110,Armor,1,5,0,7125,2375,500,740,925,50,800,1200,0,0,0,0,0,0 -111,Armor,1,6,0,6750,2250,1000,1040,1300,50,800,1200,0,0,0,0,0,0 -112,Armor,1,7,20,7125,2375,500,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 -113,Armor,1,8,0,6750,2250,1000,2380,2975,50,800,1200,600,1000,600,1000,400,600 -114,Armor,1,9,0,6450,2150,1400,2800,3500,50,800,1200,600,1000,600,1000,400,600 -115,Armor,1,10,40,7125,2375,500,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 -116,Armor,1,11,0,6150,2050,1800,4000,5000,50,800,1200,600,1000,600,1000,400,600 -117,Armor,1,12,0,5925,1975,2100,4200,5250,50,800,1200,600,1000,600,1000,400,600 -118,Armor,1,13,80,6525,2175,1300,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 -119,Armor,1,14,0,5700,1900,2400,4600,5750,50,800,1200,600,1000,600,1000,400,600 -120,Armor,1,15,0,5475,1825,2700,4800,6000,50,800,1200,600,1000,600,1000,400,600 -121,Armor,1,16,160,6000,2000,2000,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 -122,Armor,1,17,0,5325,1775,2900,5200,6500,50,800,1200,600,1000,600,1000,400,600 -123,Armor,1,18,0,5175,1725,3100,5400,6750,50,800,1200,600,1000,600,1000,400,600 -124,Armor,1,19,320,5625,1875,2500,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 -125,Armor,1,20,0,3750,1250,5000,5800,7250,50,800,1200,800,1200,800,1200,400,600 -126,Armor,1,21,0,3750,1250,5000,6000,7500,50,800,1200,800,1200,800,1200,400,600 +110,Armor,1,5,0,7625,2375,0,740,925,50,800,1200,0,0,0,0,0,0 +111,Armor,1,6,0,7750,2250,0,1040,1300,50,800,1200,0,0,0,0,0,0 +112,Armor,1,7,20,7625,2375,0,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,0,7750,2250,0,2380,2975,50,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,0,7850,2150,0,2800,3500,50,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,40,7625,2375,0,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,0,7950,2050,0,4000,5000,50,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,0,8025,1975,0,4200,5250,50,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,80,7825,2175,0,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,0,8100,1900,0,4600,5750,50,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,0,8175,1825,0,4800,6000,50,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,160,8000,2000,0,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,0,8225,1775,0,5200,6500,50,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,0,8275,1725,0,5400,6750,50,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,320,8125,1875,0,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,0,8750,1250,0,5800,7250,50,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,0,8750,1250,0,6000,7500,50,800,1200,800,1200,800,1200,400,600 127,Armor,2,1,0,7500,2500,0,30,37,50,800,1200,0,0,0,0,0,0 128,Armor,2,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 129,Armor,2,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 130,Armor,2,4,20,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 -131,Armor,2,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 -132,Armor,2,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 -133,Armor,2,7,40,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 -134,Armor,2,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 -135,Armor,2,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 -136,Armor,2,10,80,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 -137,Armor,2,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 -138,Armor,2,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 -139,Armor,2,13,160,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 -140,Armor,2,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 -141,Armor,2,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 -142,Armor,2,16,320,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 -143,Armor,2,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 -144,Armor,2,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 -145,Armor,2,19,640,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 -146,Armor,2,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 -147,Armor,2,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +131,Armor,2,5,0,7625,2375,0,1110,1387,50,800,1200,0,0,0,0,0,0 +132,Armor,2,6,0,7750,2250,0,1560,1950,50,800,1200,0,0,0,0,0,0 +133,Armor,2,7,40,7625,2375,0,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,0,7750,2250,0,3570,4462,50,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,0,7850,2150,0,4200,5250,50,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,80,7625,2375,0,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,0,7950,2050,0,6000,7500,50,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,0,8025,1975,0,6300,7875,50,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,160,7825,2175,0,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,0,8100,1900,0,6900,8625,50,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,0,8175,1825,0,7200,9000,50,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,320,8000,2000,0,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,0,8225,1775,0,7800,9750,50,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,0,8275,1725,0,8100,10125,50,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,640,8125,1875,0,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,0,8750,1250,0,8700,10875,50,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,0,8750,1250,0,9000,11250,50,800,1200,800,1200,800,1200,400,600 148,Armor,3,1,0,7500,2500,0,60,75,50,800,1200,0,0,0,0,0,0 149,Armor,3,2,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 150,Armor,3,3,0,7500,2500,0,300,375,50,800,1200,0,0,0,0,0,0 151,Armor,3,4,30,7500,2500,0,1500,1875,50,800,1200,2500,3500,2500,3500,1200,1800 -152,Armor,3,5,0,7125,2375,500,2220,2775,50,800,1200,0,0,0,0,0,0 -153,Armor,3,6,0,6750,2250,1000,3120,3900,50,800,1200,0,0,0,0,0,0 -154,Armor,3,7,60,7125,2375,500,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 -155,Armor,3,8,0,6750,2250,1000,7140,8925,50,800,1200,600,1000,600,1000,400,600 -156,Armor,3,9,0,6450,2150,1400,8400,10500,50,800,1200,600,1000,600,1000,400,600 -157,Armor,3,10,120,7125,2375,500,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 -158,Armor,3,11,0,6150,2050,1800,12000,15000,50,800,1200,600,1000,600,1000,400,600 -159,Armor,3,12,0,5925,1975,2100,12600,15750,50,800,1200,600,1000,600,1000,400,600 -160,Armor,3,13,240,6525,2175,1300,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 -161,Armor,3,14,0,5700,1900,2400,13800,17250,50,800,1200,600,1000,600,1000,400,600 -162,Armor,3,15,0,5475,1825,2700,14400,18000,50,800,1200,600,1000,600,1000,400,600 -163,Armor,3,16,480,6000,2000,2000,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 -164,Armor,3,17,0,5325,1775,2900,15600,19500,50,800,1200,600,1000,600,1000,400,600 -165,Armor,3,18,0,5175,1725,3100,16200,20250,50,800,1200,600,1000,600,1000,400,600 -166,Armor,3,19,960,5625,1875,2500,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 -167,Armor,3,20,0,3750,1250,5000,17400,21750,50,800,1200,800,1200,800,1200,400,600 -168,Armor,3,21,0,3750,1250,5000,18000,22500,50,800,1200,800,1200,800,1200,400,600 +152,Armor,3,5,0,7625,2375,0,2220,2775,50,800,1200,0,0,0,0,0,0 +153,Armor,3,6,0,7750,2250,0,3120,3900,50,800,1200,0,0,0,0,0,0 +154,Armor,3,7,60,7625,2375,0,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,0,7750,2250,0,7140,8925,50,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,0,7850,2150,0,8400,10500,50,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,120,7625,2375,0,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,0,7950,2050,0,12000,15000,50,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,0,8025,1975,0,12600,15750,50,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,240,7825,2175,0,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,0,8100,1900,0,13800,17250,50,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,0,8175,1825,0,14400,18000,50,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,480,8000,2000,0,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,0,8225,1775,0,15600,19500,50,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,0,8275,1725,0,16200,20250,50,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,960,8125,1875,0,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,0,8750,1250,0,17400,21750,50,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,0,8750,1250,0,18000,22500,50,800,1200,800,1200,800,1200,400,600 169,Armor,4,1,0,7500,2500,0,130,162,50,800,1200,0,0,0,0,0,0 170,Armor,4,2,0,7500,2500,0,325,406,50,800,1200,0,0,0,0,0,0 171,Armor,4,3,0,7500,2500,0,650,812,50,800,1200,0,0,0,0,0,0 172,Armor,4,4,40,7500,2500,0,3250,4062,50,800,1200,2500,3500,2500,3500,1200,1800 -173,Armor,4,5,0,7125,2375,500,4810,6012,50,800,1200,0,0,0,0,0,0 -174,Armor,4,6,0,6750,2250,1000,6760,8450,50,800,1200,0,0,0,0,0,0 -175,Armor,4,7,80,7125,2375,500,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 -176,Armor,4,8,0,6750,2250,1000,15470,19337,50,800,1200,600,1000,600,1000,400,600 -177,Armor,4,9,0,6450,2150,1400,18200,22750,50,800,1200,600,1000,600,1000,400,600 -178,Armor,4,10,160,7125,2375,500,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 -179,Armor,4,11,0,6150,2050,1800,26000,32500,50,800,1200,600,1000,600,1000,400,600 -180,Armor,4,12,0,5925,1975,2100,27300,34125,50,800,1200,600,1000,600,1000,400,600 -181,Armor,4,13,320,6525,2175,1300,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 -182,Armor,4,14,0,5700,1900,2400,29900,37375,50,800,1200,600,1000,600,1000,400,600 -183,Armor,4,15,0,5475,1825,2700,31200,39000,50,800,1200,600,1000,600,1000,400,600 -184,Armor,4,16,640,6000,2000,2000,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 -185,Armor,4,17,0,5325,1775,2900,33800,42250,50,800,1200,600,1000,600,1000,400,600 -186,Armor,4,18,0,5175,1725,3100,35100,43875,50,800,1200,600,1000,600,1000,400,600 -187,Armor,4,19,1280,5625,1875,2500,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 -188,Armor,4,20,0,3750,1250,5000,37700,47125,50,800,1200,800,1200,800,1200,400,600 -189,Armor,4,21,0,3750,1250,5000,39000,48750,50,800,1200,800,1200,800,1200,400,600 +173,Armor,4,5,0,7625,2375,0,4810,6012,50,800,1200,0,0,0,0,0,0 +174,Armor,4,6,0,7750,2250,0,6760,8450,50,800,1200,0,0,0,0,0,0 +175,Armor,4,7,80,7625,2375,0,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,0,7750,2250,0,15470,19337,50,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,0,7850,2150,0,18200,22750,50,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,160,7625,2375,0,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,0,7950,2050,0,26000,32500,50,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,0,8025,1975,0,27300,34125,50,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,320,7825,2175,0,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,0,8100,1900,0,29900,37375,50,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,0,8175,1825,0,31200,39000,50,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,640,8000,2000,0,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,0,8225,1775,0,33800,42250,50,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,0,8275,1725,0,35100,43875,50,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,1280,8125,1875,0,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,0,8750,1250,0,37700,47125,50,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,0,8750,1250,0,39000,48750,50,800,1200,800,1200,800,1200,400,600 190,Armor,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 191,Armor,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 192,Armor,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 @@ -213,86 +213,86 @@ id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,s 212,Belt,1,2,0,7500,2500,0,50,62,50,800,1200,0,0,0,0,0,0 213,Belt,1,3,0,7500,2500,0,100,125,50,800,1200,0,0,0,0,0,0 214,Belt,1,4,10,7500,2500,0,500,625,50,800,1200,2500,3500,2500,3500,1200,1800 -215,Belt,1,5,0,7125,2375,500,740,925,50,800,1200,0,0,0,0,0,0 -216,Belt,1,6,0,6750,2250,1000,1040,1300,50,800,1200,0,0,0,0,0,0 -217,Belt,1,7,20,7125,2375,500,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 -218,Belt,1,8,0,6750,2250,1000,2380,2975,50,800,1200,600,1000,600,1000,400,600 -219,Belt,1,9,0,6450,2150,1400,2800,3500,50,800,1200,600,1000,600,1000,400,600 -220,Belt,1,10,40,7125,2375,500,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 -221,Belt,1,11,0,6150,2050,1800,4000,5000,50,800,1200,600,1000,600,1000,400,600 -222,Belt,1,12,0,5925,1975,2100,4200,5250,50,800,1200,600,1000,600,1000,400,600 -223,Belt,1,13,80,6525,2175,1300,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 -224,Belt,1,14,0,5700,1900,2400,4600,5750,50,800,1200,600,1000,600,1000,400,600 -225,Belt,1,15,0,5475,1825,2700,4800,6000,50,800,1200,600,1000,600,1000,400,600 -226,Belt,1,16,160,6000,2000,2000,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 -227,Belt,1,17,0,5325,1775,2900,5200,6500,50,800,1200,600,1000,600,1000,400,600 -228,Belt,1,18,0,5175,1725,3100,5400,6750,50,800,1200,600,1000,600,1000,400,600 -229,Belt,1,19,320,5625,1875,2500,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 -230,Belt,1,20,0,3750,1250,5000,5800,7250,50,800,1200,800,1200,800,1200,400,600 -231,Belt,1,21,0,3750,1250,5000,6000,7500,50,800,1200,800,1200,800,1200,400,600 +215,Belt,1,5,0,7625,2375,0,740,925,50,800,1200,0,0,0,0,0,0 +216,Belt,1,6,0,7750,2250,0,1040,1300,50,800,1200,0,0,0,0,0,0 +217,Belt,1,7,20,7625,2375,0,2000,2500,50,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,0,7750,2250,0,2380,2975,50,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,0,7850,2150,0,2800,3500,50,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,40,7625,2375,0,3800,4750,50,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,0,7950,2050,0,4000,5000,50,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,0,8025,1975,0,4200,5250,50,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,80,7825,2175,0,4400,5500,50,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,0,8100,1900,0,4600,5750,50,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,0,8175,1825,0,4800,6000,50,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,160,8000,2000,0,5000,6250,50,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,0,8225,1775,0,5200,6500,50,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,0,8275,1725,0,5400,6750,50,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,320,8125,1875,0,5600,7000,50,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,0,8750,1250,0,5800,7250,50,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,0,8750,1250,0,6000,7500,50,800,1200,800,1200,800,1200,400,600 232,Belt,2,1,0,7500,2500,0,30,37,50,800,1200,0,0,0,0,0,0 233,Belt,2,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 234,Belt,2,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 235,Belt,2,4,20,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 -236,Belt,2,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 -237,Belt,2,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 -238,Belt,2,7,40,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 -239,Belt,2,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 -240,Belt,2,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 -241,Belt,2,10,80,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 -242,Belt,2,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 -243,Belt,2,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 -244,Belt,2,13,160,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 -245,Belt,2,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 -246,Belt,2,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 -247,Belt,2,16,320,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 -248,Belt,2,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 -249,Belt,2,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 -250,Belt,2,19,640,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 -251,Belt,2,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 -252,Belt,2,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +236,Belt,2,5,0,7625,2375,0,1110,1387,50,800,1200,0,0,0,0,0,0 +237,Belt,2,6,0,7750,2250,0,1560,1950,50,800,1200,0,0,0,0,0,0 +238,Belt,2,7,40,7625,2375,0,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,0,7750,2250,0,3570,4462,50,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,0,7850,2150,0,4200,5250,50,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,80,7625,2375,0,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,0,7950,2050,0,6000,7500,50,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,0,8025,1975,0,6300,7875,50,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,160,7825,2175,0,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,0,8100,1900,0,6900,8625,50,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,0,8175,1825,0,7200,9000,50,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,320,8000,2000,0,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,0,8225,1775,0,7800,9750,50,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,0,8275,1725,0,8100,10125,50,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,640,8125,1875,0,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,0,8750,1250,0,8700,10875,50,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,0,8750,1250,0,9000,11250,50,800,1200,800,1200,800,1200,400,600 253,Belt,3,1,0,7500,2500,0,60,75,50,800,1200,0,0,0,0,0,0 254,Belt,3,2,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 255,Belt,3,3,0,7500,2500,0,300,375,50,800,1200,0,0,0,0,0,0 256,Belt,3,4,30,7500,2500,0,1500,1875,50,800,1200,2500,3500,2500,3500,1200,1800 -257,Belt,3,5,0,7125,2375,500,2220,2775,50,800,1200,0,0,0,0,0,0 -258,Belt,3,6,0,6750,2250,1000,3120,3900,50,800,1200,0,0,0,0,0,0 -259,Belt,3,7,60,7125,2375,500,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 -260,Belt,3,8,0,6750,2250,1000,7140,8925,50,800,1200,600,1000,600,1000,400,600 -261,Belt,3,9,0,6450,2150,1400,8400,10500,50,800,1200,600,1000,600,1000,400,600 -262,Belt,3,10,120,7125,2375,500,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 -263,Belt,3,11,0,6150,2050,1800,12000,15000,50,800,1200,600,1000,600,1000,400,600 -264,Belt,3,12,0,5925,1975,2100,12600,15750,50,800,1200,600,1000,600,1000,400,600 -265,Belt,3,13,240,6525,2175,1300,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 -266,Belt,3,14,0,5700,1900,2400,13800,17250,50,800,1200,600,1000,600,1000,400,600 -267,Belt,3,15,0,5475,1825,2700,14400,18000,50,800,1200,600,1000,600,1000,400,600 -268,Belt,3,16,480,6000,2000,2000,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 -269,Belt,3,17,0,5325,1775,2900,15600,19500,50,800,1200,600,1000,600,1000,400,600 -270,Belt,3,18,0,5175,1725,3100,16200,20250,50,800,1200,600,1000,600,1000,400,600 -271,Belt,3,19,960,5625,1875,2500,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 -272,Belt,3,20,0,3750,1250,5000,17400,21750,50,800,1200,800,1200,800,1200,400,600 -273,Belt,3,21,0,3750,1250,5000,18000,22500,50,800,1200,800,1200,800,1200,400,600 +257,Belt,3,5,0,7625,2375,0,2220,2775,50,800,1200,0,0,0,0,0,0 +258,Belt,3,6,0,7750,2250,0,3120,3900,50,800,1200,0,0,0,0,0,0 +259,Belt,3,7,60,7625,2375,0,6000,7500,50,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,0,7750,2250,0,7140,8925,50,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,0,7850,2150,0,8400,10500,50,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,120,7625,2375,0,11400,14250,50,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,0,7950,2050,0,12000,15000,50,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,0,8025,1975,0,12600,15750,50,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,240,7825,2175,0,13200,16500,50,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,0,8100,1900,0,13800,17250,50,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,0,8175,1825,0,14400,18000,50,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,480,8000,2000,0,15000,18750,50,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,0,8225,1775,0,15600,19500,50,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,0,8275,1725,0,16200,20250,50,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,960,8125,1875,0,16800,21000,50,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,0,8750,1250,0,17400,21750,50,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,0,8750,1250,0,18000,22500,50,800,1200,800,1200,800,1200,400,600 274,Belt,4,1,0,7500,2500,0,130,162,50,800,1200,0,0,0,0,0,0 275,Belt,4,2,0,7500,2500,0,325,406,50,800,1200,0,0,0,0,0,0 276,Belt,4,3,0,7500,2500,0,650,812,50,800,1200,0,0,0,0,0,0 277,Belt,4,4,40,7500,2500,0,3250,4062,50,800,1200,2500,3500,2500,3500,1200,1800 -278,Belt,4,5,0,7125,2375,500,4810,6012,50,800,1200,0,0,0,0,0,0 -279,Belt,4,6,0,6750,2250,1000,6760,8450,50,800,1200,0,0,0,0,0,0 -280,Belt,4,7,80,7125,2375,500,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 -281,Belt,4,8,0,6750,2250,1000,15470,19337,50,800,1200,600,1000,600,1000,400,600 -282,Belt,4,9,0,6450,2150,1400,18200,22750,50,800,1200,600,1000,600,1000,400,600 -283,Belt,4,10,160,7125,2375,500,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 -284,Belt,4,11,0,6150,2050,1800,26000,32500,50,800,1200,600,1000,600,1000,400,600 -285,Belt,4,12,0,5925,1975,2100,27300,34125,50,800,1200,600,1000,600,1000,400,600 -286,Belt,4,13,320,6525,2175,1300,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 -287,Belt,4,14,0,5700,1900,2400,29900,37375,50,800,1200,600,1000,600,1000,400,600 -288,Belt,4,15,0,5475,1825,2700,31200,39000,50,800,1200,600,1000,600,1000,400,600 -289,Belt,4,16,640,6000,2000,2000,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 -290,Belt,4,17,0,5325,1775,2900,33800,42250,50,800,1200,600,1000,600,1000,400,600 -291,Belt,4,18,0,5175,1725,3100,35100,43875,50,800,1200,600,1000,600,1000,400,600 -292,Belt,4,19,1280,5625,1875,2500,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 -293,Belt,4,20,0,3750,1250,5000,37700,47125,50,800,1200,800,1200,800,1200,400,600 -294,Belt,4,21,0,3750,1250,5000,39000,48750,50,800,1200,800,1200,800,1200,400,600 +278,Belt,4,5,0,7625,2375,0,4810,6012,50,800,1200,0,0,0,0,0,0 +279,Belt,4,6,0,7750,2250,0,6760,8450,50,800,1200,0,0,0,0,0,0 +280,Belt,4,7,80,7625,2375,0,13000,16250,50,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,0,7750,2250,0,15470,19337,50,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,0,7850,2150,0,18200,22750,50,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,160,7625,2375,0,24700,30875,50,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,0,7950,2050,0,26000,32500,50,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,0,8025,1975,0,27300,34125,50,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,320,7825,2175,0,28600,35750,50,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,0,8100,1900,0,29900,37375,50,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,0,8175,1825,0,31200,39000,50,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,640,8000,2000,0,32500,40625,50,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,0,8225,1775,0,33800,42250,50,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,0,8275,1725,0,35100,43875,50,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,1280,8125,1875,0,36400,45500,50,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,0,8750,1250,0,37700,47125,50,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,0,8750,1250,0,39000,48750,50,800,1200,800,1200,800,1200,400,600 295,Belt,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 296,Belt,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 297,Belt,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 @@ -318,86 +318,86 @@ id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,s 317,Necklace,1,2,0,7500,2500,0,62,77,50,800,1200,0,0,0,0,0,0 318,Necklace,1,3,0,7500,2500,0,125,156,50,800,1200,0,0,0,0,0,0 319,Necklace,1,4,10,7500,2500,0,625,781,50,800,1200,2500,3500,2500,3500,1200,1800 -320,Necklace,1,5,0,7125,2375,500,925,1156,50,800,1200,0,0,0,0,0,0 -321,Necklace,1,6,0,6750,2250,1000,1300,1625,50,800,1200,0,0,0,0,0,0 -322,Necklace,1,7,20,7125,2375,500,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 -323,Necklace,1,8,0,6750,2250,1000,2975,3718,50,800,1200,600,1000,600,1000,400,600 -324,Necklace,1,9,0,6450,2150,1400,3500,4375,50,800,1200,600,1000,600,1000,400,600 -325,Necklace,1,10,40,7125,2375,500,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 -326,Necklace,1,11,0,6150,2050,1800,5000,6250,50,800,1200,600,1000,600,1000,400,600 -327,Necklace,1,12,0,5925,1975,2100,5250,6562,50,800,1200,600,1000,600,1000,400,600 -328,Necklace,1,13,80,6525,2175,1300,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 -329,Necklace,1,14,0,5700,1900,2400,5750,7187,50,800,1200,600,1000,600,1000,400,600 -330,Necklace,1,15,0,5475,1825,2700,6000,7500,50,800,1200,600,1000,600,1000,400,600 -331,Necklace,1,16,160,6000,2000,2000,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 -332,Necklace,1,17,0,5325,1775,2900,6500,8125,50,800,1200,600,1000,600,1000,400,600 -333,Necklace,1,18,0,5175,1725,3100,6750,8437,50,800,1200,600,1000,600,1000,400,600 -334,Necklace,1,19,320,5625,1875,2500,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 -335,Necklace,1,20,0,3750,1250,5000,7250,9062,50,800,1200,800,1200,800,1200,400,600 -336,Necklace,1,21,0,3750,1250,5000,7500,9375,50,800,1200,800,1200,800,1200,400,600 +320,Necklace,1,5,0,7625,2375,0,925,1156,50,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,0,7750,2250,0,1300,1625,50,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,20,7625,2375,0,2500,3125,50,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,0,7750,2250,0,2975,3718,50,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,0,7850,2150,0,3500,4375,50,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,40,7625,2375,0,4750,5937,50,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,0,7950,2050,0,5000,6250,50,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,0,8025,1975,0,5250,6562,50,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,80,7825,2175,0,5500,6875,50,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,0,8100,1900,0,5750,7187,50,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,0,8175,1825,0,6000,7500,50,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,160,8000,2000,0,6250,7812,50,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,0,8225,1775,0,6500,8125,50,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,0,8275,1725,0,6750,8437,50,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,320,8125,1875,0,7000,8750,50,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,0,8750,1250,0,7250,9062,50,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,0,8750,1250,0,7500,9375,50,800,1200,800,1200,800,1200,400,600 337,Necklace,2,1,0,7500,2500,0,37,46,50,800,1200,0,0,0,0,0,0 338,Necklace,2,2,0,7500,2500,0,93,116,50,800,1200,0,0,0,0,0,0 339,Necklace,2,3,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 340,Necklace,2,4,20,7500,2500,0,937,1171,50,800,1200,2500,3500,2500,3500,1200,1800 -341,Necklace,2,5,0,7125,2375,500,1387,1733,50,800,1200,0,0,0,0,0,0 -342,Necklace,2,6,0,6750,2250,1000,1950,2437,50,800,1200,0,0,0,0,0,0 -343,Necklace,2,7,40,7125,2375,500,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 -344,Necklace,2,8,0,6750,2250,1000,4462,5577,50,800,1200,600,1000,600,1000,400,600 -345,Necklace,2,9,0,6450,2150,1400,5250,6562,50,800,1200,600,1000,600,1000,400,600 -346,Necklace,2,10,80,7125,2375,500,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 -347,Necklace,2,11,0,6150,2050,1800,7500,9375,50,800,1200,600,1000,600,1000,400,600 -348,Necklace,2,12,0,5925,1975,2100,7875,9843,50,800,1200,600,1000,600,1000,400,600 -349,Necklace,2,13,160,6525,2175,1300,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 -350,Necklace,2,14,0,5700,1900,2400,8625,10781,50,800,1200,600,1000,600,1000,400,600 -351,Necklace,2,15,0,5475,1825,2700,9000,11250,50,800,1200,600,1000,600,1000,400,600 -352,Necklace,2,16,320,6000,2000,2000,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 -353,Necklace,2,17,0,5325,1775,2900,9750,12187,50,800,1200,600,1000,600,1000,400,600 -354,Necklace,2,18,0,5175,1725,3100,10125,12656,50,800,1200,600,1000,600,1000,400,600 -355,Necklace,2,19,640,5625,1875,2500,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 -356,Necklace,2,20,0,3750,1250,5000,10875,13593,50,800,1200,800,1200,800,1200,400,600 -357,Necklace,2,21,0,3750,1250,5000,11250,14062,50,800,1200,800,1200,800,1200,400,600 +341,Necklace,2,5,0,7625,2375,0,1387,1733,50,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,0,7750,2250,0,1950,2437,50,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,40,7625,2375,0,3750,4687,50,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,0,7750,2250,0,4462,5577,50,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,0,7850,2150,0,5250,6562,50,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,80,7625,2375,0,7125,8906,50,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,0,7950,2050,0,7500,9375,50,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,0,8025,1975,0,7875,9843,50,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,160,7825,2175,0,8250,10312,50,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,0,8100,1900,0,8625,10781,50,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,0,8175,1825,0,9000,11250,50,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,320,8000,2000,0,9375,11718,50,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,0,8225,1775,0,9750,12187,50,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,0,8275,1725,0,10125,12656,50,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,640,8125,1875,0,10500,13125,50,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,0,8750,1250,0,10875,13593,50,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,0,8750,1250,0,11250,14062,50,800,1200,800,1200,800,1200,400,600 358,Necklace,3,1,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 359,Necklace,3,2,0,7500,2500,0,187,233,50,800,1200,0,0,0,0,0,0 360,Necklace,3,3,0,7500,2500,0,375,468,50,800,1200,0,0,0,0,0,0 361,Necklace,3,4,30,7500,2500,0,1875,2343,50,800,1200,2500,3500,2500,3500,1200,1800 -362,Necklace,3,5,0,7125,2375,500,2775,3468,50,800,1200,0,0,0,0,0,0 -363,Necklace,3,6,0,6750,2250,1000,3900,4875,50,800,1200,0,0,0,0,0,0 -364,Necklace,3,7,60,7125,2375,500,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 -365,Necklace,3,8,0,6750,2250,1000,8925,11156,50,800,1200,600,1000,600,1000,400,600 -366,Necklace,3,9,0,6450,2150,1400,10500,13125,50,800,1200,600,1000,600,1000,400,600 -367,Necklace,3,10,120,7125,2375,500,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 -368,Necklace,3,11,0,6150,2050,1800,15000,18750,50,800,1200,600,1000,600,1000,400,600 -369,Necklace,3,12,0,5925,1975,2100,15750,19687,50,800,1200,600,1000,600,1000,400,600 -370,Necklace,3,13,240,6525,2175,1300,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 -371,Necklace,3,14,0,5700,1900,2400,17250,21562,50,800,1200,600,1000,600,1000,400,600 -372,Necklace,3,15,0,5475,1825,2700,18000,22500,50,800,1200,600,1000,600,1000,400,600 -373,Necklace,3,16,480,6000,2000,2000,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 -374,Necklace,3,17,0,5325,1775,2900,19500,24375,50,800,1200,600,1000,600,1000,400,600 -375,Necklace,3,18,0,5175,1725,3100,20250,25312,50,800,1200,600,1000,600,1000,400,600 -376,Necklace,3,19,960,5625,1875,2500,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 -377,Necklace,3,20,0,3750,1250,5000,21750,27187,50,800,1200,800,1200,800,1200,400,600 -378,Necklace,3,21,0,3750,1250,5000,22500,28125,50,800,1200,800,1200,800,1200,400,600 +362,Necklace,3,5,0,7625,2375,0,2775,3468,50,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,0,7750,2250,0,3900,4875,50,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,60,7625,2375,0,7500,9375,50,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,0,7750,2250,0,8925,11156,50,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,0,7850,2150,0,10500,13125,50,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,120,7625,2375,0,14250,17812,50,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,0,7950,2050,0,15000,18750,50,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,0,8025,1975,0,15750,19687,50,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,240,7825,2175,0,16500,20625,50,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,0,8100,1900,0,17250,21562,50,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,0,8175,1825,0,18000,22500,50,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,480,8000,2000,0,18750,23437,50,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,0,8225,1775,0,19500,24375,50,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,0,8275,1725,0,20250,25312,50,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,960,8125,1875,0,21000,26250,50,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,0,8750,1250,0,21750,27187,50,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,0,8750,1250,0,22500,28125,50,800,1200,800,1200,800,1200,400,600 379,Necklace,4,1,0,7500,2500,0,162,202,50,800,1200,0,0,0,0,0,0 380,Necklace,4,2,0,7500,2500,0,406,507,50,800,1200,0,0,0,0,0,0 381,Necklace,4,3,0,7500,2500,0,812,1015,50,800,1200,0,0,0,0,0,0 382,Necklace,4,4,40,7500,2500,0,4062,5077,50,800,1200,2500,3500,2500,3500,1200,1800 -383,Necklace,4,5,0,7125,2375,500,6012,7515,50,800,1200,0,0,0,0,0,0 -384,Necklace,4,6,0,6750,2250,1000,8450,10562,50,800,1200,0,0,0,0,0,0 -385,Necklace,4,7,80,7125,2375,500,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 -386,Necklace,4,8,0,6750,2250,1000,19337,24171,50,800,1200,600,1000,600,1000,400,600 -387,Necklace,4,9,0,6450,2150,1400,22750,28437,50,800,1200,600,1000,600,1000,400,600 -388,Necklace,4,10,160,7125,2375,500,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 -389,Necklace,4,11,0,6150,2050,1800,32500,40625,50,800,1200,600,1000,600,1000,400,600 -390,Necklace,4,12,0,5925,1975,2100,34125,42656,50,800,1200,600,1000,600,1000,400,600 -391,Necklace,4,13,320,6525,2175,1300,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 -392,Necklace,4,14,0,5700,1900,2400,37375,46718,50,800,1200,600,1000,600,1000,400,600 -393,Necklace,4,15,0,5475,1825,2700,39000,48750,50,800,1200,600,1000,600,1000,400,600 -394,Necklace,4,16,640,6000,2000,2000,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 -395,Necklace,4,17,0,5325,1775,2900,42250,52812,50,800,1200,600,1000,600,1000,400,600 -396,Necklace,4,18,0,5175,1725,3100,43875,54843,50,800,1200,600,1000,600,1000,400,600 -397,Necklace,4,19,1280,5625,1875,2500,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 -398,Necklace,4,20,0,3750,1250,5000,47125,58906,50,800,1200,800,1200,800,1200,400,600 -399,Necklace,4,21,0,3750,1250,5000,48750,60937,50,800,1200,800,1200,800,1200,400,600 +383,Necklace,4,5,0,7625,2375,0,6012,7515,50,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,0,7750,2250,0,8450,10562,50,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,80,7625,2375,0,16250,20312,50,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,0,7750,2250,0,19337,24171,50,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,0,7850,2150,0,22750,28437,50,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,160,7625,2375,0,30875,38593,50,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,0,7950,2050,0,32500,40625,50,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,0,8025,1975,0,34125,42656,50,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,320,7825,2175,0,35750,44687,50,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,0,8100,1900,0,37375,46718,50,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,0,8175,1825,0,39000,48750,50,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,640,8000,2000,0,40625,50781,50,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,0,8225,1775,0,42250,52812,50,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,0,8275,1725,0,43875,54843,50,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,1280,8125,1875,0,45500,56875,50,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,0,8750,1250,0,47125,58906,50,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,0,8750,1250,0,48750,60937,50,800,1200,800,1200,800,1200,400,600 400,Necklace,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 401,Necklace,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 402,Necklace,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 @@ -423,86 +423,86 @@ id,item_sub_type,grade,level,cost,success_ratio,great_success_ratio,fail_ratio,s 422,Ring,1,2,0,7500,2500,0,75,93,50,800,1200,0,0,0,0,0,0 423,Ring,1,3,0,7500,2500,0,150,187,50,800,1200,0,0,0,0,0,0 424,Ring,1,4,10,7500,2500,0,750,937,50,800,1200,2500,3500,2500,3500,1200,1800 -425,Ring,1,5,0,7125,2375,500,1110,1387,50,800,1200,0,0,0,0,0,0 -426,Ring,1,6,0,6750,2250,1000,1560,1950,50,800,1200,0,0,0,0,0,0 -427,Ring,1,7,20,7125,2375,500,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 -428,Ring,1,8,0,6750,2250,1000,3570,4462,50,800,1200,600,1000,600,1000,400,600 -429,Ring,1,9,0,6450,2150,1400,4200,5250,50,800,1200,600,1000,600,1000,400,600 -430,Ring,1,10,40,7125,2375,500,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 -431,Ring,1,11,0,6150,2050,1800,6000,7500,50,800,1200,600,1000,600,1000,400,600 -432,Ring,1,12,0,5925,1975,2100,6300,7875,50,800,1200,600,1000,600,1000,400,600 -433,Ring,1,13,80,6525,2175,1300,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 -434,Ring,1,14,0,5700,1900,2400,6900,8625,50,800,1200,600,1000,600,1000,400,600 -435,Ring,1,15,0,5475,1825,2700,7200,9000,50,800,1200,600,1000,600,1000,400,600 -436,Ring,1,16,160,6000,2000,2000,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 -437,Ring,1,17,0,5325,1775,2900,7800,9750,50,800,1200,600,1000,600,1000,400,600 -438,Ring,1,18,0,5175,1725,3100,8100,10125,50,800,1200,600,1000,600,1000,400,600 -439,Ring,1,19,320,5625,1875,2500,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 -440,Ring,1,20,0,3750,1250,5000,8700,10875,50,800,1200,800,1200,800,1200,400,600 -441,Ring,1,21,0,3750,1250,5000,9000,11250,50,800,1200,800,1200,800,1200,400,600 +425,Ring,1,5,0,7625,2375,0,1110,1387,50,800,1200,0,0,0,0,0,0 +426,Ring,1,6,0,7750,2250,0,1560,1950,50,800,1200,0,0,0,0,0,0 +427,Ring,1,7,20,7625,2375,0,3000,3750,50,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,0,7750,2250,0,3570,4462,50,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,0,7850,2150,0,4200,5250,50,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,40,7625,2375,0,5700,7125,50,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,0,7950,2050,0,6000,7500,50,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,0,8025,1975,0,6300,7875,50,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,80,7825,2175,0,6600,8250,50,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,0,8100,1900,0,6900,8625,50,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,0,8175,1825,0,7200,9000,50,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,160,8000,2000,0,7500,9375,50,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,0,8225,1775,0,7800,9750,50,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,0,8275,1725,0,8100,10125,50,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,320,8125,1875,0,8400,10500,50,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,0,8750,1250,0,8700,10875,50,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,0,8750,1250,0,9000,11250,50,800,1200,800,1200,800,1200,400,600 442,Ring,2,1,0,7500,2500,0,45,56,50,800,1200,0,0,0,0,0,0 443,Ring,2,2,0,7500,2500,0,112,140,50,800,1200,0,0,0,0,0,0 444,Ring,2,3,0,7500,2500,0,225,281,50,800,1200,0,0,0,0,0,0 445,Ring,2,4,20,7500,2500,0,1125,1406,50,800,1200,2500,3500,2500,3500,1200,1800 -446,Ring,2,5,0,7125,2375,500,1665,2081,50,800,1200,0,0,0,0,0,0 -447,Ring,2,6,0,6750,2250,1000,2340,2925,50,800,1200,0,0,0,0,0,0 -448,Ring,2,7,40,7125,2375,500,4500,5625,50,800,1200,2500,3500,2500,3500,1200,1800 -449,Ring,2,8,0,6750,2250,1000,5355,6693,50,800,1200,600,1000,600,1000,400,600 -450,Ring,2,9,0,6450,2150,1400,6300,7875,50,800,1200,600,1000,600,1000,400,600 -451,Ring,2,10,80,7125,2375,500,8550,10687,50,800,1200,1100,1700,1100,1700,700,1100 -452,Ring,2,11,0,6150,2050,1800,9000,11250,50,800,1200,600,1000,600,1000,400,600 -453,Ring,2,12,0,5925,1975,2100,9450,11812,50,800,1200,600,1000,600,1000,400,600 -454,Ring,2,13,160,6525,2175,1300,9900,12375,50,800,1200,1100,1700,1100,1700,700,1100 -455,Ring,2,14,0,5700,1900,2400,10350,12937,50,800,1200,600,1000,600,1000,400,600 -456,Ring,2,15,0,5475,1825,2700,10800,13500,50,800,1200,600,1000,600,1000,400,600 -457,Ring,2,16,320,6000,2000,2000,11250,14062,50,800,1200,1100,1700,1100,1700,700,1100 -458,Ring,2,17,0,5325,1775,2900,11700,14625,50,800,1200,600,1000,600,1000,400,600 -459,Ring,2,18,0,5175,1725,3100,12150,15187,50,800,1200,600,1000,600,1000,400,600 -460,Ring,2,19,640,5625,1875,2500,12600,15750,50,800,1200,1100,1700,1100,1700,700,1100 -461,Ring,2,20,0,3750,1250,5000,13050,16312,50,800,1200,800,1200,800,1200,400,600 -462,Ring,2,21,0,3750,1250,5000,13500,16875,50,800,1200,800,1200,800,1200,400,600 +446,Ring,2,5,0,7625,2375,0,1665,2081,50,800,1200,0,0,0,0,0,0 +447,Ring,2,6,0,7750,2250,0,2340,2925,50,800,1200,0,0,0,0,0,0 +448,Ring,2,7,40,7625,2375,0,4500,5625,50,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,0,7750,2250,0,5355,6693,50,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,0,7850,2150,0,6300,7875,50,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,80,7625,2375,0,8550,10687,50,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,0,7950,2050,0,9000,11250,50,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,0,8025,1975,0,9450,11812,50,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,160,7825,2175,0,9900,12375,50,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,0,8100,1900,0,10350,12937,50,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,0,8175,1825,0,10800,13500,50,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,320,8000,2000,0,11250,14062,50,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,0,8225,1775,0,11700,14625,50,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,0,8275,1725,0,12150,15187,50,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,640,8125,1875,0,12600,15750,50,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,0,8750,1250,0,13050,16312,50,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,0,8750,1250,0,13500,16875,50,800,1200,800,1200,800,1200,400,600 463,Ring,3,1,0,7500,2500,0,90,112,50,800,1200,0,0,0,0,0,0 464,Ring,3,2,0,7500,2500,0,225,281,50,800,1200,0,0,0,0,0,0 465,Ring,3,3,0,7500,2500,0,450,562,50,800,1200,0,0,0,0,0,0 466,Ring,3,4,30,7500,2500,0,2250,2812,50,800,1200,2500,3500,2500,3500,1200,1800 -467,Ring,3,5,0,7125,2375,500,3330,4162,50,800,1200,0,0,0,0,0,0 -468,Ring,3,6,0,6750,2250,1000,4680,5850,50,800,1200,0,0,0,0,0,0 -469,Ring,3,7,60,7125,2375,500,9000,11250,50,800,1200,2500,3500,2500,3500,1200,1800 -470,Ring,3,8,0,6750,2250,1000,10710,13387,50,800,1200,600,1000,600,1000,400,600 -471,Ring,3,9,0,6450,2150,1400,12600,15750,50,800,1200,600,1000,600,1000,400,600 -472,Ring,3,10,120,7125,2375,500,17100,21375,50,800,1200,1100,1700,1100,1700,700,1100 -473,Ring,3,11,0,6150,2050,1800,18000,22500,50,800,1200,600,1000,600,1000,400,600 -474,Ring,3,12,0,5925,1975,2100,18900,23625,50,800,1200,600,1000,600,1000,400,600 -475,Ring,3,13,240,6525,2175,1300,19800,24750,50,800,1200,1100,1700,1100,1700,700,1100 -476,Ring,3,14,0,5700,1900,2400,20700,25875,50,800,1200,600,1000,600,1000,400,600 -477,Ring,3,15,0,5475,1825,2700,21600,27000,50,800,1200,600,1000,600,1000,400,600 -478,Ring,3,16,480,6000,2000,2000,22500,28125,50,800,1200,1100,1700,1100,1700,700,1100 -479,Ring,3,17,0,5325,1775,2900,23400,29250,50,800,1200,600,1000,600,1000,400,600 -480,Ring,3,18,0,5175,1725,3100,24300,30375,50,800,1200,600,1000,600,1000,400,600 -481,Ring,3,19,960,5625,1875,2500,25200,31500,50,800,1200,1100,1700,1100,1700,700,1100 -482,Ring,3,20,0,3750,1250,5000,26100,32625,50,800,1200,800,1200,800,1200,400,600 -483,Ring,3,21,0,3750,1250,5000,27000,33750,50,800,1200,800,1200,800,1200,400,600 +467,Ring,3,5,0,7625,2375,0,3330,4162,50,800,1200,0,0,0,0,0,0 +468,Ring,3,6,0,7750,2250,0,4680,5850,50,800,1200,0,0,0,0,0,0 +469,Ring,3,7,60,7625,2375,0,9000,11250,50,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,0,7750,2250,0,10710,13387,50,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,0,7850,2150,0,12600,15750,50,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,120,7625,2375,0,17100,21375,50,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,0,7950,2050,0,18000,22500,50,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,0,8025,1975,0,18900,23625,50,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,240,7825,2175,0,19800,24750,50,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,0,8100,1900,0,20700,25875,50,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,0,8175,1825,0,21600,27000,50,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,480,8000,2000,0,22500,28125,50,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,0,8225,1775,0,23400,29250,50,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,0,8275,1725,0,24300,30375,50,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,960,8125,1875,0,25200,31500,50,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,0,8750,1250,0,26100,32625,50,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,0,8750,1250,0,27000,33750,50,800,1200,800,1200,800,1200,400,600 484,Ring,4,1,0,7500,2500,0,195,243,50,800,1200,0,0,0,0,0,0 485,Ring,4,2,0,7500,2500,0,487,608,50,800,1200,0,0,0,0,0,0 486,Ring,4,3,0,7500,2500,0,975,1218,50,800,1200,0,0,0,0,0,0 487,Ring,4,4,40,7500,2500,0,4875,6093,50,800,1200,2500,3500,2500,3500,1200,1800 -488,Ring,4,5,0,7125,2375,500,7215,9018,50,800,1200,0,0,0,0,0,0 -489,Ring,4,6,0,6750,2250,1000,10140,12675,50,800,1200,0,0,0,0,0,0 -490,Ring,4,7,80,7125,2375,500,19500,24375,50,800,1200,2500,3500,2500,3500,1200,1800 -491,Ring,4,8,0,6750,2250,1000,23205,29006,50,800,1200,600,1000,600,1000,400,600 -492,Ring,4,9,0,6450,2150,1400,27300,34125,50,800,1200,600,1000,600,1000,400,600 -493,Ring,4,10,160,7125,2375,500,37050,46312,50,800,1200,1100,1700,1100,1700,700,1100 -494,Ring,4,11,0,6150,2050,1800,39000,48750,50,800,1200,600,1000,600,1000,400,600 -495,Ring,4,12,0,5925,1975,2100,40950,51187,50,800,1200,600,1000,600,1000,400,600 -496,Ring,4,13,320,6525,2175,1300,42900,53625,50,800,1200,1100,1700,1100,1700,700,1100 -497,Ring,4,14,0,5700,1900,2400,44850,56062,50,800,1200,600,1000,600,1000,400,600 -498,Ring,4,15,0,5475,1825,2700,46800,58500,50,800,1200,600,1000,600,1000,400,600 -499,Ring,4,16,640,6000,2000,2000,48750,60937,50,800,1200,1100,1700,1100,1700,700,1100 -500,Ring,4,17,0,5325,1775,2900,50700,63375,50,800,1200,600,1000,600,1000,400,600 -501,Ring,4,18,0,5175,1725,3100,52650,65812,50,800,1200,600,1000,600,1000,400,600 -502,Ring,4,19,1280,5625,1875,2500,54600,68250,50,800,1200,1100,1700,1100,1700,700,1100 -503,Ring,4,20,0,3750,1250,5000,56550,70687,50,800,1200,800,1200,800,1200,400,600 -504,Ring,4,21,0,3750,1250,5000,58500,73125,50,800,1200,800,1200,800,1200,400,600 +488,Ring,4,5,0,7625,2375,0,7215,9018,50,800,1200,0,0,0,0,0,0 +489,Ring,4,6,0,7750,2250,0,10140,12675,50,800,1200,0,0,0,0,0,0 +490,Ring,4,7,80,7625,2375,0,19500,24375,50,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,0,7750,2250,0,23205,29006,50,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,0,7850,2150,0,27300,34125,50,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,160,7625,2375,0,37050,46312,50,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,0,7950,2050,0,39000,48750,50,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,0,8025,1975,0,40950,51187,50,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,320,7825,2175,0,42900,53625,50,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,0,8100,1900,0,44850,56062,50,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,0,8175,1825,0,46800,58500,50,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,640,8000,2000,0,48750,60937,50,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,0,8225,1775,0,50700,63375,50,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,0,8275,1725,0,52650,65812,50,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,1280,8125,1875,0,54600,68250,50,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,0,8750,1250,0,56550,70687,50,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,0,8750,1250,0,58500,73125,50,800,1200,800,1200,800,1200,400,600 505,Ring,5,1,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 506,Ring,5,2,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 507,Ring,5,3,0,7500,2500,0,3600,7200,0,1300,1400,1200,1300,0,0,0,0 diff --git a/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv b/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv index 0cd2fe44c7..eb9c29e652 100644 --- a/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv +++ b/Lib9c/TableCSV/Cost/EnhancementCostSheetV3.csv @@ -1,526 +1,631 @@ -id,item_sub_type,grade,level,cost,exp,required_block_index,base_stat_growth_min,base_stat_growth_max,extra_stat_growth_min,extra_stat_growth_max,extra_skill_damage_growth_min,extra_skill_damage_growth_max,extra_skill_chance_growth_min,extra_skill_chance_growth_max -1,Weapon,1,1,0,20,25,800,1200,0,0,0,0,0,0 -2,Weapon,1,2,0,40,62,800,1200,0,0,0,0,0,0 -3,Weapon,1,3,0,80,125,800,1200,0,0,0,0,0,0 -4,Weapon,1,4,20,160,625,800,1200,2500,3500,2500,3500,1200,1800 -5,Weapon,1,5,40,320,925,800,1200,0,0,0,0,0,0 -6,Weapon,1,6,80,640,1300,800,1200,0,0,0,0,0,0 -7,Weapon,1,7,160,1280,2500,800,1200,2500,3500,2500,3500,1200,1800 -8,Weapon,1,8,320,2560,2975,800,1200,600,1000,600,1000,400,600 -9,Weapon,1,9,640,5120,3500,800,1200,600,1000,600,1000,400,600 -10,Weapon,1,10,1280,10240,4750,800,1200,1100,1700,1100,1700,700,1100 -11,Weapon,1,11,2560,20480,5000,800,1200,600,1000,600,1000,400,600 -12,Weapon,1,12,5120,40960,5250,800,1200,600,1000,600,1000,400,600 -13,Weapon,1,13,10240,81920,5500,800,1200,1100,1700,1100,1700,700,1100 -14,Weapon,1,14,20480,163840,5750,800,1200,600,1000,600,1000,400,600 -15,Weapon,1,15,40960,327680,6000,800,1200,600,1000,600,1000,400,600 -16,Weapon,1,16,81920,655360,6250,800,1200,1100,1700,1100,1700,700,1100 -17,Weapon,1,17,163840,1310720,6500,800,1200,600,1000,600,1000,400,600 -18,Weapon,1,18,327680,2621440,6750,800,1200,600,1000,600,1000,400,600 -19,Weapon,1,19,655360,5242880,7000,800,1200,1100,1700,1100,1700,700,1100 -20,Weapon,1,20,1310720,10485760,7250,800,1200,800,1200,800,1200,400,600 -21,Weapon,1,21,2621440,20971520,7500,800,1200,800,1200,800,1200,400,600 -22,Weapon,2,1,0,160,37,800,1200,0,0,0,0,0,0 -23,Weapon,2,2,0,320,93,800,1200,0,0,0,0,0,0 -24,Weapon,2,3,0,640,187,800,1200,0,0,0,0,0,0 -25,Weapon,2,4,20,1280,937,800,1200,2500,3500,2500,3500,1200,1800 -26,Weapon,2,5,40,2560,1387,800,1200,0,0,0,0,0,0 -27,Weapon,2,6,80,5120,1950,800,1200,0,0,0,0,0,0 -28,Weapon,2,7,160,10240,3750,800,1200,2500,3500,2500,3500,1200,1800 -29,Weapon,2,8,320,20480,4462,800,1200,600,1000,600,1000,400,600 -30,Weapon,2,9,640,40960,5250,800,1200,600,1000,600,1000,400,600 -31,Weapon,2,10,1280,81920,7125,800,1200,1100,1700,1100,1700,700,1100 -32,Weapon,2,11,2560,163840,7500,800,1200,600,1000,600,1000,400,600 -33,Weapon,2,12,5120,327680,7875,800,1200,600,1000,600,1000,400,600 -34,Weapon,2,13,10240,655360,8250,800,1200,1100,1700,1100,1700,700,1100 -35,Weapon,2,14,20480,1310720,8625,800,1200,600,1000,600,1000,400,600 -36,Weapon,2,15,40960,2621440,9000,800,1200,600,1000,600,1000,400,600 -37,Weapon,2,16,81920,5242880,9375,800,1200,1100,1700,1100,1700,700,1100 -38,Weapon,2,17,163840,10485760,9750,800,1200,600,1000,600,1000,400,600 -39,Weapon,2,18,327680,20971520,10125,800,1200,600,1000,600,1000,400,600 -40,Weapon,2,19,655360,41943040,10500,800,1200,1100,1700,1100,1700,700,1100 -41,Weapon,2,20,1310720,83886080,10875,800,1200,800,1200,800,1200,400,600 -42,Weapon,2,21,2621440,167772160,11250,800,1200,800,1200,800,1200,400,600 -43,Weapon,3,1,0,32040,75,800,1200,0,0,0,0,0,0 -44,Weapon,3,2,0,64080,187,800,1200,0,0,0,0,0,0 -45,Weapon,3,3,0,128160,375,800,1200,0,0,0,0,0,0 -46,Weapon,3,4,20,256320,1875,800,1200,2500,3500,2500,3500,1200,1800 -47,Weapon,3,5,40,512640,2775,800,1200,0,0,0,0,0,0 -48,Weapon,3,6,80,1025280,3900,800,1200,0,0,0,0,0,0 -49,Weapon,3,7,160,2050560,7500,800,1200,2500,3500,2500,3500,1200,1800 -50,Weapon,3,8,320,4101120,8925,800,1200,600,1000,600,1000,400,600 -51,Weapon,3,9,640,8202240,10500,800,1200,600,1000,600,1000,400,600 -52,Weapon,3,10,1280,16404480,14250,800,1200,1100,1700,1100,1700,700,1100 -53,Weapon,3,11,2560,32808960,15000,800,1200,600,1000,600,1000,400,600 -54,Weapon,3,12,5120,65617920,15750,800,1200,600,1000,600,1000,400,600 -55,Weapon,3,13,10240,131235840,16500,800,1200,1100,1700,1100,1700,700,1100 -56,Weapon,3,14,20480,262471680,17250,800,1200,600,1000,600,1000,400,600 -57,Weapon,3,15,40960,524943360,18000,800,1200,600,1000,600,1000,400,600 -58,Weapon,3,16,81920,1049886720,18750,800,1200,1100,1700,1100,1700,700,1100 -59,Weapon,3,17,163840,2099773440,19500,800,1200,600,1000,600,1000,400,600 -60,Weapon,3,18,327680,4199546880,20250,800,1200,600,1000,600,1000,400,600 -61,Weapon,3,19,655360,8399093760,21000,800,1200,1100,1700,1100,1700,700,1100 -62,Weapon,3,20,1310720,16798187520,21750,800,1200,800,1200,800,1200,400,600 -63,Weapon,3,21,2621440,33596375040,22500,800,1200,800,1200,800,1200,400,600 -64,Weapon,4,1,0,852000,162,800,1200,0,0,0,0,0,0 -65,Weapon,4,2,0,1704000,406,800,1200,0,0,0,0,0,0 -66,Weapon,4,3,0,3408000,812,800,1200,0,0,0,0,0,0 -67,Weapon,4,4,20,6816000,4062,800,1200,2500,3500,2500,3500,1200,1800 -68,Weapon,4,5,40,13632000,6012,800,1200,0,0,0,0,0,0 -69,Weapon,4,6,80,27264000,8450,800,1200,0,0,0,0,0,0 -70,Weapon,4,7,160,54528000,16250,800,1200,2500,3500,2500,3500,1200,1800 -71,Weapon,4,8,320,109056000,19337,800,1200,600,1000,600,1000,400,600 -72,Weapon,4,9,640,218112000,22750,800,1200,600,1000,600,1000,400,600 -73,Weapon,4,10,1280,436224000,30875,800,1200,1100,1700,1100,1700,700,1100 -74,Weapon,4,11,2560,872448000,32500,800,1200,600,1000,600,1000,400,600 -75,Weapon,4,12,5120,1744896000,34125,800,1200,600,1000,600,1000,400,600 -76,Weapon,4,13,10240,3489792000,35750,800,1200,1100,1700,1100,1700,700,1100 -77,Weapon,4,14,20480,6979584000,37375,800,1200,600,1000,600,1000,400,600 -78,Weapon,4,15,40960,13959168000,39000,800,1200,600,1000,600,1000,400,600 -79,Weapon,4,16,81920,27918336000,40625,800,1200,1100,1700,1100,1700,700,1100 -80,Weapon,4,17,163840,55836672000,42250,800,1200,600,1000,600,1000,400,600 -81,Weapon,4,18,327680,111673344000,43875,800,1200,600,1000,600,1000,400,600 -82,Weapon,4,19,655360,223346688000,45500,800,1200,1100,1700,1100,1700,700,1100 -83,Weapon,4,20,1310720,446693376000,47125,800,1200,800,1200,800,1200,400,600 -84,Weapon,4,21,2621440,893386752000,48750,800,1200,800,1200,800,1200,400,600 -85,Weapon,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 -86,Weapon,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 -87,Weapon,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 -88,Weapon,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 -89,Weapon,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 -90,Weapon,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -91,Weapon,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 -92,Weapon,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 -93,Weapon,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -94,Weapon,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 -95,Weapon,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 -96,Weapon,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 -97,Weapon,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 -98,Weapon,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 -99,Weapon,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 -100,Weapon,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 -101,Weapon,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 -102,Weapon,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 -103,Weapon,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 -104,Weapon,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 -105,Weapon,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 -106,Armor,1,1,0,38,20,800,1200,0,0,0,0,0,0 -107,Armor,1,2,0,76,50,800,1200,0,0,0,0,0,0 -108,Armor,1,3,0,152,100,800,1200,0,0,0,0,0,0 -109,Armor,1,4,20,304,500,800,1200,2500,3500,2500,3500,1200,1800 -110,Armor,1,5,40,608,740,800,1200,0,0,0,0,0,0 -111,Armor,1,6,80,1216,1040,800,1200,0,0,0,0,0,0 -112,Armor,1,7,160,2432,2000,800,1200,2500,3500,2500,3500,1200,1800 -113,Armor,1,8,320,4864,2380,800,1200,600,1000,600,1000,400,600 -114,Armor,1,9,640,9728,2800,800,1200,600,1000,600,1000,400,600 -115,Armor,1,10,1280,19456,3800,800,1200,1100,1700,1100,1700,700,1100 -116,Armor,1,11,2560,38912,4000,800,1200,600,1000,600,1000,400,600 -117,Armor,1,12,5120,77824,4200,800,1200,600,1000,600,1000,400,600 -118,Armor,1,13,10240,155648,4400,800,1200,1100,1700,1100,1700,700,1100 -119,Armor,1,14,20480,311296,4600,800,1200,600,1000,600,1000,400,600 -120,Armor,1,15,40960,622592,4800,800,1200,600,1000,600,1000,400,600 -121,Armor,1,16,81920,1245184,5000,800,1200,1100,1700,1100,1700,700,1100 -122,Armor,1,17,163840,2490368,5200,800,1200,600,1000,600,1000,400,600 -123,Armor,1,18,327680,4980736,5400,800,1200,600,1000,600,1000,400,600 -124,Armor,1,19,655360,9961472,5600,800,1200,1100,1700,1100,1700,700,1100 -125,Armor,1,20,1310720,19922944,5800,800,1200,800,1200,800,1200,400,600 -126,Armor,1,21,2621440,39845888,6000,800,1200,800,1200,800,1200,400,600 -127,Armor,2,1,0,206,30,800,1200,0,0,0,0,0,0 -128,Armor,2,2,0,412,75,800,1200,0,0,0,0,0,0 -129,Armor,2,3,0,824,150,800,1200,0,0,0,0,0,0 -130,Armor,2,4,20,1648,750,800,1200,2500,3500,2500,3500,1200,1800 -131,Armor,2,5,40,3296,1110,800,1200,0,0,0,0,0,0 -132,Armor,2,6,80,6592,1560,800,1200,0,0,0,0,0,0 -133,Armor,2,7,160,13184,3000,800,1200,2500,3500,2500,3500,1200,1800 -134,Armor,2,8,320,26368,3570,800,1200,600,1000,600,1000,400,600 -135,Armor,2,9,640,52736,4200,800,1200,600,1000,600,1000,400,600 -136,Armor,2,10,1280,105472,5700,800,1200,1100,1700,1100,1700,700,1100 -137,Armor,2,11,2560,210944,6000,800,1200,600,1000,600,1000,400,600 -138,Armor,2,12,5120,421888,6300,800,1200,600,1000,600,1000,400,600 -139,Armor,2,13,10240,843776,6600,800,1200,1100,1700,1100,1700,700,1100 -140,Armor,2,14,20480,1687552,6900,800,1200,600,1000,600,1000,400,600 -141,Armor,2,15,40960,3375104,7200,800,1200,600,1000,600,1000,400,600 -142,Armor,2,16,81920,6750208,7500,800,1200,1100,1700,1100,1700,700,1100 -143,Armor,2,17,163840,13500416,7800,800,1200,600,1000,600,1000,400,600 -144,Armor,2,18,327680,27000832,8100,800,1200,600,1000,600,1000,400,600 -145,Armor,2,19,655360,54001664,8400,800,1200,1100,1700,1100,1700,700,1100 -146,Armor,2,20,1310720,108003328,8700,800,1200,800,1200,800,1200,400,600 -147,Armor,2,21,2621440,216006656,9000,800,1200,800,1200,800,1200,400,600 -148,Armor,3,1,0,19200,60,800,1200,0,0,0,0,0,0 -149,Armor,3,2,0,38400,150,800,1200,0,0,0,0,0,0 -150,Armor,3,3,0,76800,300,800,1200,0,0,0,0,0,0 -151,Armor,3,4,20,153600,1500,800,1200,2500,3500,2500,3500,1200,1800 -152,Armor,3,5,40,307200,2220,800,1200,0,0,0,0,0,0 -153,Armor,3,6,80,614400,3120,800,1200,0,0,0,0,0,0 -154,Armor,3,7,160,1228800,6000,800,1200,2500,3500,2500,3500,1200,1800 -155,Armor,3,8,320,2457600,7140,800,1200,600,1000,600,1000,400,600 -156,Armor,3,9,640,4915200,8400,800,1200,600,1000,600,1000,400,600 -157,Armor,3,10,1280,9830400,11400,800,1200,1100,1700,1100,1700,700,1100 -158,Armor,3,11,2560,19660800,12000,800,1200,600,1000,600,1000,400,600 -159,Armor,3,12,5120,39321600,12600,800,1200,600,1000,600,1000,400,600 -160,Armor,3,13,10240,78643200,13200,800,1200,1100,1700,1100,1700,700,1100 -161,Armor,3,14,20480,157286400,13800,800,1200,600,1000,600,1000,400,600 -162,Armor,3,15,40960,314572800,14400,800,1200,600,1000,600,1000,400,600 -163,Armor,3,16,81920,629145600,15000,800,1200,1100,1700,1100,1700,700,1100 -164,Armor,3,17,163840,1258291200,15600,800,1200,600,1000,600,1000,400,600 -165,Armor,3,18,327680,2516582400,16200,800,1200,600,1000,600,1000,400,600 -166,Armor,3,19,655360,5033164800,16800,800,1200,1100,1700,1100,1700,700,1100 -167,Armor,3,20,1310720,10066329600,17400,800,1200,800,1200,800,1200,400,600 -168,Armor,3,21,2621440,20132659200,18000,800,1200,800,1200,800,1200,400,600 -169,Armor,4,1,0,852000,130,800,1200,0,0,0,0,0,0 -170,Armor,4,2,0,1704000,325,800,1200,0,0,0,0,0,0 -171,Armor,4,3,0,3408000,650,800,1200,0,0,0,0,0,0 -172,Armor,4,4,20,6816000,3250,800,1200,2500,3500,2500,3500,1200,1800 -173,Armor,4,5,40,13632000,4810,800,1200,0,0,0,0,0,0 -174,Armor,4,6,80,27264000,6760,800,1200,0,0,0,0,0,0 -175,Armor,4,7,160,54528000,13000,800,1200,2500,3500,2500,3500,1200,1800 -176,Armor,4,8,320,109056000,15470,800,1200,600,1000,600,1000,400,600 -177,Armor,4,9,640,218112000,18200,800,1200,600,1000,600,1000,400,600 -178,Armor,4,10,1280,436224000,24700,800,1200,1100,1700,1100,1700,700,1100 -179,Armor,4,11,2560,872448000,26000,800,1200,600,1000,600,1000,400,600 -180,Armor,4,12,5120,1744896000,27300,800,1200,600,1000,600,1000,400,600 -181,Armor,4,13,10240,3489792000,28600,800,1200,1100,1700,1100,1700,700,1100 -182,Armor,4,14,20480,6979584000,29900,800,1200,600,1000,600,1000,400,600 -183,Armor,4,15,40960,13959168000,31200,800,1200,600,1000,600,1000,400,600 -184,Armor,4,16,81920,27918336000,32500,800,1200,1100,1700,1100,1700,700,1100 -185,Armor,4,17,163840,55836672000,33800,800,1200,600,1000,600,1000,400,600 -186,Armor,4,18,327680,111673344000,35100,800,1200,600,1000,600,1000,400,600 -187,Armor,4,19,655360,223346688000,36400,800,1200,1100,1700,1100,1700,700,1100 -188,Armor,4,20,1310720,446693376000,37700,800,1200,800,1200,800,1200,400,600 -189,Armor,4,21,2621440,893386752000,39000,800,1200,800,1200,800,1200,400,600 -190,Armor,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 -191,Armor,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 -192,Armor,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 -193,Armor,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 -194,Armor,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 -195,Armor,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -196,Armor,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 -197,Armor,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 -198,Armor,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -199,Armor,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 -200,Armor,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 -201,Armor,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 -202,Armor,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 -203,Armor,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 -204,Armor,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 -205,Armor,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 -206,Armor,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 -207,Armor,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 -208,Armor,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 -209,Armor,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 -210,Armor,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 -211,Belt,1,1,0,1908,20,800,1200,0,0,0,0,0,0 -212,Belt,1,2,0,3816,50,800,1200,0,0,0,0,0,0 -213,Belt,1,3,0,7632,100,800,1200,0,0,0,0,0,0 -214,Belt,1,4,20,15264,500,800,1200,2500,3500,2500,3500,1200,1800 -215,Belt,1,5,40,30528,740,800,1200,0,0,0,0,0,0 -216,Belt,1,6,80,61056,1040,800,1200,0,0,0,0,0,0 -217,Belt,1,7,160,122112,2000,800,1200,2500,3500,2500,3500,1200,1800 -218,Belt,1,8,320,244224,2380,800,1200,600,1000,600,1000,400,600 -219,Belt,1,9,640,488448,2800,800,1200,600,1000,600,1000,400,600 -220,Belt,1,10,1280,976896,3800,800,1200,1100,1700,1100,1700,700,1100 -221,Belt,1,11,2560,1953792,4000,800,1200,600,1000,600,1000,400,600 -222,Belt,1,12,5120,3907584,4200,800,1200,600,1000,600,1000,400,600 -223,Belt,1,13,10240,7815168,4400,800,1200,1100,1700,1100,1700,700,1100 -224,Belt,1,14,20480,15630336,4600,800,1200,600,1000,600,1000,400,600 -225,Belt,1,15,40960,31260672,4800,800,1200,600,1000,600,1000,400,600 -226,Belt,1,16,81920,62521344,5000,800,1200,1100,1700,1100,1700,700,1100 -227,Belt,1,17,163840,125042688,5200,800,1200,600,1000,600,1000,400,600 -228,Belt,1,18,327680,250085376,5400,800,1200,600,1000,600,1000,400,600 -229,Belt,1,19,655360,500170752,5600,800,1200,1100,1700,1100,1700,700,1100 -230,Belt,1,20,1310720,1000341504,5800,800,1200,800,1200,800,1200,400,600 -231,Belt,1,21,2621440,2000683008,6000,800,1200,800,1200,800,1200,400,600 -232,Belt,2,1,0,2992,30,800,1200,0,0,0,0,0,0 -233,Belt,2,2,0,5984,75,800,1200,0,0,0,0,0,0 -234,Belt,2,3,0,11968,150,800,1200,0,0,0,0,0,0 -235,Belt,2,4,20,23936,750,800,1200,2500,3500,2500,3500,1200,1800 -236,Belt,2,5,40,47872,1110,800,1200,0,0,0,0,0,0 -237,Belt,2,6,80,95744,1560,800,1200,0,0,0,0,0,0 -238,Belt,2,7,160,191488,3000,800,1200,2500,3500,2500,3500,1200,1800 -239,Belt,2,8,320,382976,3570,800,1200,600,1000,600,1000,400,600 -240,Belt,2,9,640,765952,4200,800,1200,600,1000,600,1000,400,600 -241,Belt,2,10,1280,1531904,5700,800,1200,1100,1700,1100,1700,700,1100 -242,Belt,2,11,2560,3063808,6000,800,1200,600,1000,600,1000,400,600 -243,Belt,2,12,5120,6127616,6300,800,1200,600,1000,600,1000,400,600 -244,Belt,2,13,10240,12255232,6600,800,1200,1100,1700,1100,1700,700,1100 -245,Belt,2,14,20480,24510464,6900,800,1200,600,1000,600,1000,400,600 -246,Belt,2,15,40960,49020928,7200,800,1200,600,1000,600,1000,400,600 -247,Belt,2,16,81920,98041856,7500,800,1200,1100,1700,1100,1700,700,1100 -248,Belt,2,17,163840,196083712,7800,800,1200,600,1000,600,1000,400,600 -249,Belt,2,18,327680,392167424,8100,800,1200,600,1000,600,1000,400,600 -250,Belt,2,19,655360,784334848,8400,800,1200,1100,1700,1100,1700,700,1100 -251,Belt,2,20,1310720,1568669696,8700,800,1200,800,1200,800,1200,400,600 -252,Belt,2,21,2621440,3137339392,9000,800,1200,800,1200,800,1200,400,600 -253,Belt,3,1,0,7728,60,800,1200,0,0,0,0,0,0 -254,Belt,3,2,0,15456,150,800,1200,0,0,0,0,0,0 -255,Belt,3,3,0,30912,300,800,1200,0,0,0,0,0,0 -256,Belt,3,4,20,61824,1500,800,1200,2500,3500,2500,3500,1200,1800 -257,Belt,3,5,40,123648,2220,800,1200,0,0,0,0,0,0 -258,Belt,3,6,80,247296,3120,800,1200,0,0,0,0,0,0 -259,Belt,3,7,160,494592,6000,800,1200,2500,3500,2500,3500,1200,1800 -260,Belt,3,8,320,989184,7140,800,1200,600,1000,600,1000,400,600 -261,Belt,3,9,640,1978368,8400,800,1200,600,1000,600,1000,400,600 -262,Belt,3,10,1280,3956736,11400,800,1200,1100,1700,1100,1700,700,1100 -263,Belt,3,11,2560,7913472,12000,800,1200,600,1000,600,1000,400,600 -264,Belt,3,12,5120,15826944,12600,800,1200,600,1000,600,1000,400,600 -265,Belt,3,13,10240,31653888,13200,800,1200,1100,1700,1100,1700,700,1100 -266,Belt,3,14,20480,63307776,13800,800,1200,600,1000,600,1000,400,600 -267,Belt,3,15,40960,126615552,14400,800,1200,600,1000,600,1000,400,600 -268,Belt,3,16,81920,253231104,15000,800,1200,1100,1700,1100,1700,700,1100 -269,Belt,3,17,163840,506462208,15600,800,1200,600,1000,600,1000,400,600 -270,Belt,3,18,327680,1012924416,16200,800,1200,600,1000,600,1000,400,600 -271,Belt,3,19,655360,2025848832,16800,800,1200,1100,1700,1100,1700,700,1100 -272,Belt,3,20,1310720,4051697664,17400,800,1200,800,1200,800,1200,400,600 -273,Belt,3,21,2621440,8103395328,18000,800,1200,800,1200,800,1200,400,600 -274,Belt,4,1,0,193200,130,800,1200,0,0,0,0,0,0 -275,Belt,4,2,0,386400,325,800,1200,0,0,0,0,0,0 -276,Belt,4,3,0,772800,650,800,1200,0,0,0,0,0,0 -277,Belt,4,4,20,1545600,3250,800,1200,2500,3500,2500,3500,1200,1800 -278,Belt,4,5,40,3091200,4810,800,1200,0,0,0,0,0,0 -279,Belt,4,6,80,6182400,6760,800,1200,0,0,0,0,0,0 -280,Belt,4,7,160,12364800,13000,800,1200,2500,3500,2500,3500,1200,1800 -281,Belt,4,8,320,24729600,15470,800,1200,600,1000,600,1000,400,600 -282,Belt,4,9,640,49459200,18200,800,1200,600,1000,600,1000,400,600 -283,Belt,4,10,1280,98918400,24700,800,1200,1100,1700,1100,1700,700,1100 -284,Belt,4,11,2560,197836800,26000,800,1200,600,1000,600,1000,400,600 -285,Belt,4,12,5120,395673600,27300,800,1200,600,1000,600,1000,400,600 -286,Belt,4,13,10240,791347200,28600,800,1200,1100,1700,1100,1700,700,1100 -287,Belt,4,14,20480,1582694400,29900,800,1200,600,1000,600,1000,400,600 -288,Belt,4,15,40960,3165388800,31200,800,1200,600,1000,600,1000,400,600 -289,Belt,4,16,81920,6330777600,32500,800,1200,1100,1700,1100,1700,700,1100 -290,Belt,4,17,163840,12661555200,33800,800,1200,600,1000,600,1000,400,600 -291,Belt,4,18,327680,25323110400,35100,800,1200,600,1000,600,1000,400,600 -292,Belt,4,19,655360,50646220800,36400,800,1200,1100,1700,1100,1700,700,1100 -293,Belt,4,20,1310720,101292441600,37700,800,1200,800,1200,800,1200,400,600 -294,Belt,4,21,2621440,202584883200,39000,800,1200,800,1200,800,1200,400,600 -295,Belt,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 -296,Belt,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 -297,Belt,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 -298,Belt,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 -299,Belt,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 -300,Belt,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -301,Belt,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 -302,Belt,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 -303,Belt,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -304,Belt,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 -305,Belt,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 -306,Belt,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 -307,Belt,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 -308,Belt,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 -309,Belt,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 -310,Belt,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 -311,Belt,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 -312,Belt,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 -313,Belt,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 -314,Belt,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 -315,Belt,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 -316,Necklace,1,1,0,630,25,800,1200,0,0,0,0,0,0 -317,Necklace,1,2,0,1260,62,800,1200,0,0,0,0,0,0 -318,Necklace,1,3,0,2520,125,800,1200,0,0,0,0,0,0 -319,Necklace,1,4,20,5040,625,800,1200,2500,3500,2500,3500,1200,1800 -320,Necklace,1,5,40,10080,925,800,1200,0,0,0,0,0,0 -321,Necklace,1,6,80,20160,1300,800,1200,0,0,0,0,0,0 -322,Necklace,1,7,160,40320,2500,800,1200,2500,3500,2500,3500,1200,1800 -323,Necklace,1,8,320,80640,2975,800,1200,600,1000,600,1000,400,600 -324,Necklace,1,9,640,161280,3500,800,1200,600,1000,600,1000,400,600 -325,Necklace,1,10,1280,322560,4750,800,1200,1100,1700,1100,1700,700,1100 -326,Necklace,1,11,2560,645120,5000,800,1200,600,1000,600,1000,400,600 -327,Necklace,1,12,5120,1290240,5250,800,1200,600,1000,600,1000,400,600 -328,Necklace,1,13,10240,2580480,5500,800,1200,1100,1700,1100,1700,700,1100 -329,Necklace,1,14,20480,5160960,5750,800,1200,600,1000,600,1000,400,600 -330,Necklace,1,15,40960,10321920,6000,800,1200,600,1000,600,1000,400,600 -331,Necklace,1,16,81920,20643840,6250,800,1200,1100,1700,1100,1700,700,1100 -332,Necklace,1,17,163840,41287680,6500,800,1200,600,1000,600,1000,400,600 -333,Necklace,1,18,327680,82575360,6750,800,1200,600,1000,600,1000,400,600 -334,Necklace,1,19,655360,165150720,7000,800,1200,1100,1700,1100,1700,700,1100 -335,Necklace,1,20,1310720,330301440,7250,800,1200,800,1200,800,1200,400,600 -336,Necklace,1,21,2621440,660602880,7500,800,1200,800,1200,800,1200,400,600 -337,Necklace,2,1,0,3472,37,800,1200,0,0,0,0,0,0 -338,Necklace,2,2,0,6944,93,800,1200,0,0,0,0,0,0 -339,Necklace,2,3,0,13888,187,800,1200,0,0,0,0,0,0 -340,Necklace,2,4,20,27776,937,800,1200,2500,3500,2500,3500,1200,1800 -341,Necklace,2,5,40,55552,1387,800,1200,0,0,0,0,0,0 -342,Necklace,2,6,80,111104,1950,800,1200,0,0,0,0,0,0 -343,Necklace,2,7,160,222208,3750,800,1200,2500,3500,2500,3500,1200,1800 -344,Necklace,2,8,320,444416,4462,800,1200,600,1000,600,1000,400,600 -345,Necklace,2,9,640,888832,5250,800,1200,600,1000,600,1000,400,600 -346,Necklace,2,10,1280,1777664,7125,800,1200,1100,1700,1100,1700,700,1100 -347,Necklace,2,11,2560,3555328,7500,800,1200,600,1000,600,1000,400,600 -348,Necklace,2,12,5120,7110656,7875,800,1200,600,1000,600,1000,400,600 -349,Necklace,2,13,10240,14221312,8250,800,1200,1100,1700,1100,1700,700,1100 -350,Necklace,2,14,20480,28442624,8625,800,1200,600,1000,600,1000,400,600 -351,Necklace,2,15,40960,56885248,9000,800,1200,600,1000,600,1000,400,600 -352,Necklace,2,16,81920,113770496,9375,800,1200,1100,1700,1100,1700,700,1100 -353,Necklace,2,17,163840,227540992,9750,800,1200,600,1000,600,1000,400,600 -354,Necklace,2,18,327680,455081984,10125,800,1200,600,1000,600,1000,400,600 -355,Necklace,2,19,655360,910163968,10500,800,1200,1100,1700,1100,1700,700,1100 -356,Necklace,2,20,1310720,1820327936,10875,800,1200,800,1200,800,1200,400,600 -357,Necklace,2,21,2621440,3640655872,11250,800,1200,800,1200,800,1200,400,600 -358,Necklace,3,1,0,130080,75,800,1200,0,0,0,0,0,0 -359,Necklace,3,2,0,260160,187,800,1200,0,0,0,0,0,0 -360,Necklace,3,3,0,520320,375,800,1200,0,0,0,0,0,0 -361,Necklace,3,4,20,1040640,1875,800,1200,2500,3500,2500,3500,1200,1800 -362,Necklace,3,5,40,2081280,2775,800,1200,0,0,0,0,0,0 -363,Necklace,3,6,80,4162560,3900,800,1200,0,0,0,0,0,0 -364,Necklace,3,7,160,8325120,7500,800,1200,2500,3500,2500,3500,1200,1800 -365,Necklace,3,8,320,16650240,8925,800,1200,600,1000,600,1000,400,600 -366,Necklace,3,9,640,33300480,10500,800,1200,600,1000,600,1000,400,600 -367,Necklace,3,10,1280,66600960,14250,800,1200,1100,1700,1100,1700,700,1100 -368,Necklace,3,11,2560,133201920,15000,800,1200,600,1000,600,1000,400,600 -369,Necklace,3,12,5120,266403840,15750,800,1200,600,1000,600,1000,400,600 -370,Necklace,3,13,10240,532807680,16500,800,1200,1100,1700,1100,1700,700,1100 -371,Necklace,3,14,20480,1065615360,17250,800,1200,600,1000,600,1000,400,600 -372,Necklace,3,15,40960,2131230720,18000,800,1200,600,1000,600,1000,400,600 -373,Necklace,3,16,81920,4262461440,18750,800,1200,1100,1700,1100,1700,700,1100 -374,Necklace,3,17,163840,8524922880,19500,800,1200,600,1000,600,1000,400,600 -375,Necklace,3,18,327680,17049845760,20250,800,1200,600,1000,600,1000,400,600 -376,Necklace,3,19,655360,34099691520,21000,800,1200,1100,1700,1100,1700,700,1100 -377,Necklace,3,20,1310720,68199383040,21750,800,1200,800,1200,800,1200,400,600 -378,Necklace,3,21,2621440,136398766080,22500,800,1200,800,1200,800,1200,400,600 -379,Necklace,4,1,0,486000,162,800,1200,0,0,0,0,0,0 -380,Necklace,4,2,0,972000,406,800,1200,0,0,0,0,0,0 -381,Necklace,4,3,0,1944000,812,800,1200,0,0,0,0,0,0 -382,Necklace,4,4,20,3888000,4062,800,1200,2500,3500,2500,3500,1200,1800 -383,Necklace,4,5,40,7776000,6012,800,1200,0,0,0,0,0,0 -384,Necklace,4,6,80,15552000,8450,800,1200,0,0,0,0,0,0 -385,Necklace,4,7,160,31104000,16250,800,1200,2500,3500,2500,3500,1200,1800 -386,Necklace,4,8,320,62208000,19337,800,1200,600,1000,600,1000,400,600 -387,Necklace,4,9,640,124416000,22750,800,1200,600,1000,600,1000,400,600 -388,Necklace,4,10,1280,248832000,30875,800,1200,1100,1700,1100,1700,700,1100 -389,Necklace,4,11,2560,497664000,32500,800,1200,600,1000,600,1000,400,600 -390,Necklace,4,12,5120,995328000,34125,800,1200,600,1000,600,1000,400,600 -391,Necklace,4,13,10240,1990656000,35750,800,1200,1100,1700,1100,1700,700,1100 -392,Necklace,4,14,20480,3981312000,37375,800,1200,600,1000,600,1000,400,600 -393,Necklace,4,15,40960,7962624000,39000,800,1200,600,1000,600,1000,400,600 -394,Necklace,4,16,81920,15925248000,40625,800,1200,1100,1700,1100,1700,700,1100 -395,Necklace,4,17,163840,31850496000,42250,800,1200,600,1000,600,1000,400,600 -396,Necklace,4,18,327680,63700992000,43875,800,1200,600,1000,600,1000,400,600 -397,Necklace,4,19,655360,127401984000,45500,800,1200,1100,1700,1100,1700,700,1100 -398,Necklace,4,20,1310720,254803968000,47125,800,1200,800,1200,800,1200,400,600 -399,Necklace,4,21,2621440,509607936000,48750,800,1200,800,1200,800,1200,400,600 -400,Necklace,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 -401,Necklace,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 -402,Necklace,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 -403,Necklace,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 -404,Necklace,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 -405,Necklace,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -406,Necklace,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 -407,Necklace,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 -408,Necklace,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -409,Necklace,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 -410,Necklace,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 -411,Necklace,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 -412,Necklace,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 -413,Necklace,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 -414,Necklace,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 -415,Necklace,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 -416,Necklace,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 -417,Necklace,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 -418,Necklace,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 -419,Necklace,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 -420,Necklace,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 -421,Ring,1,1,0,20,30,800,1200,0,0,0,0,0,0 -422,Ring,1,2,0,40,75,800,1200,0,0,0,0,0,0 -423,Ring,1,3,0,80,150,800,1200,0,0,0,0,0,0 -424,Ring,1,4,20,160,750,800,1200,2500,3500,2500,3500,1200,1800 -425,Ring,1,5,40,320,1110,800,1200,0,0,0,0,0,0 -426,Ring,1,6,80,640,1560,800,1200,0,0,0,0,0,0 -427,Ring,1,7,160,1280,3000,800,1200,2500,3500,2500,3500,1200,1800 -428,Ring,1,8,320,2560,3570,800,1200,600,1000,600,1000,400,600 -429,Ring,1,9,640,5120,4200,800,1200,600,1000,600,1000,400,600 -430,Ring,1,10,1280,10240,5700,800,1200,1100,1700,1100,1700,700,1100 -431,Ring,1,11,2560,20480,6000,800,1200,600,1000,600,1000,400,600 -432,Ring,1,12,5120,40960,6300,800,1200,600,1000,600,1000,400,600 -433,Ring,1,13,10240,81920,6600,800,1200,1100,1700,1100,1700,700,1100 -434,Ring,1,14,20480,163840,6900,800,1200,600,1000,600,1000,400,600 -435,Ring,1,15,40960,327680,7200,800,1200,600,1000,600,1000,400,600 -436,Ring,1,16,81920,655360,7500,800,1200,1100,1700,1100,1700,700,1100 -437,Ring,1,17,163840,1310720,7800,800,1200,600,1000,600,1000,400,600 -438,Ring,1,18,327680,2621440,8100,800,1200,600,1000,600,1000,400,600 -439,Ring,1,19,655360,5242880,8400,800,1200,1100,1700,1100,1700,700,1100 -440,Ring,1,20,1310720,10485760,8700,800,1200,800,1200,800,1200,400,600 -441,Ring,1,21,2621440,20971520,9000,800,1200,800,1200,800,1200,400,600 -442,Ring,2,1,0,432,45,800,1200,0,0,0,0,0,0 -443,Ring,2,2,0,864,112,800,1200,0,0,0,0,0,0 -444,Ring,2,3,0,1728,225,800,1200,0,0,0,0,0,0 -445,Ring,2,4,20,3456,1125,800,1200,2500,3500,2500,3500,1200,1800 -446,Ring,2,5,40,6912,1665,800,1200,0,0,0,0,0,0 -447,Ring,2,6,80,13824,2340,800,1200,0,0,0,0,0,0 -448,Ring,2,7,160,27648,4500,800,1200,2500,3500,2500,3500,1200,1800 -449,Ring,2,8,320,55296,5355,800,1200,600,1000,600,1000,400,600 -450,Ring,2,9,640,110592,6300,800,1200,600,1000,600,1000,400,600 -451,Ring,2,10,1280,221184,8550,800,1200,1100,1700,1100,1700,700,1100 -452,Ring,2,11,2560,442368,9000,800,1200,600,1000,600,1000,400,600 -453,Ring,2,12,5120,884736,9450,800,1200,600,1000,600,1000,400,600 -454,Ring,2,13,10240,1769472,9900,800,1200,1100,1700,1100,1700,700,1100 -455,Ring,2,14,20480,3538944,10350,800,1200,600,1000,600,1000,400,600 -456,Ring,2,15,40960,7077888,10800,800,1200,600,1000,600,1000,400,600 -457,Ring,2,16,81920,14155776,11250,800,1200,1100,1700,1100,1700,700,1100 -458,Ring,2,17,163840,28311552,11700,800,1200,600,1000,600,1000,400,600 -459,Ring,2,18,327680,56623104,12150,800,1200,600,1000,600,1000,400,600 -460,Ring,2,19,655360,113246208,12600,800,1200,1100,1700,1100,1700,700,1100 -461,Ring,2,20,1310720,226492416,13050,800,1200,800,1200,800,1200,400,600 -462,Ring,2,21,2621440,452984832,13500,800,1200,800,1200,800,1200,400,600 -463,Ring,3,1,0,11136,90,800,1200,0,0,0,0,0,0 -464,Ring,3,2,0,22272,225,800,1200,0,0,0,0,0,0 -465,Ring,3,3,0,44544,450,800,1200,0,0,0,0,0,0 -466,Ring,3,4,20,89088,2250,800,1200,2500,3500,2500,3500,1200,1800 -467,Ring,3,5,40,178176,3330,800,1200,0,0,0,0,0,0 -468,Ring,3,6,80,356352,4680,800,1200,0,0,0,0,0,0 -469,Ring,3,7,160,712704,9000,800,1200,2500,3500,2500,3500,1200,1800 -470,Ring,3,8,320,1425408,10710,800,1200,600,1000,600,1000,400,600 -471,Ring,3,9,640,2850816,12600,800,1200,600,1000,600,1000,400,600 -472,Ring,3,10,1280,5701632,17100,800,1200,1100,1700,1100,1700,700,1100 -473,Ring,3,11,2560,11403264,18000,800,1200,600,1000,600,1000,400,600 -474,Ring,3,12,5120,22806528,18900,800,1200,600,1000,600,1000,400,600 -475,Ring,3,13,10240,45613056,19800,800,1200,1100,1700,1100,1700,700,1100 -476,Ring,3,14,20480,91226112,20700,800,1200,600,1000,600,1000,400,600 -477,Ring,3,15,40960,182452224,21600,800,1200,600,1000,600,1000,400,600 -478,Ring,3,16,81920,364904448,22500,800,1200,1100,1700,1100,1700,700,1100 -479,Ring,3,17,163840,729808896,23400,800,1200,600,1000,600,1000,400,600 -480,Ring,3,18,327680,1459617792,24300,800,1200,600,1000,600,1000,400,600 -481,Ring,3,19,655360,2919235584,25200,800,1200,1100,1700,1100,1700,700,1100 -482,Ring,3,20,1310720,5838471168,26100,800,1200,800,1200,800,1200,400,600 -483,Ring,3,21,2621440,11676942336,27000,800,1200,800,1200,800,1200,400,600 -484,Ring,4,1,0,852000,195,800,1200,0,0,0,0,0,0 -485,Ring,4,2,0,1704000,487,800,1200,0,0,0,0,0,0 -486,Ring,4,3,0,3408000,975,800,1200,0,0,0,0,0,0 -487,Ring,4,4,20,6816000,4875,800,1200,2500,3500,2500,3500,1200,1800 -488,Ring,4,5,40,13632000,7215,800,1200,0,0,0,0,0,0 -489,Ring,4,6,80,27264000,10140,800,1200,0,0,0,0,0,0 -490,Ring,4,7,160,54528000,19500,800,1200,2500,3500,2500,3500,1200,1800 -491,Ring,4,8,320,109056000,23205,800,1200,600,1000,600,1000,400,600 -492,Ring,4,9,640,218112000,27300,800,1200,600,1000,600,1000,400,600 -493,Ring,4,10,1280,436224000,37050,800,1200,1100,1700,1100,1700,700,1100 -494,Ring,4,11,2560,872448000,39000,800,1200,600,1000,600,1000,400,600 -495,Ring,4,12,5120,1744896000,40950,800,1200,600,1000,600,1000,400,600 -496,Ring,4,13,10240,3489792000,42900,800,1200,1100,1700,1100,1700,700,1100 -497,Ring,4,14,20480,6979584000,44850,800,1200,600,1000,600,1000,400,600 -498,Ring,4,15,40960,13959168000,46800,800,1200,600,1000,600,1000,400,600 -499,Ring,4,16,81920,27918336000,48750,800,1200,1100,1700,1100,1700,700,1100 -500,Ring,4,17,163840,55836672000,50700,800,1200,600,1000,600,1000,400,600 -501,Ring,4,18,327680,111673344000,52650,800,1200,600,1000,600,1000,400,600 -502,Ring,4,19,655360,223346688000,54600,800,1200,1100,1700,1100,1700,700,1100 -503,Ring,4,20,1310720,446693376000,56550,800,1200,800,1200,800,1200,400,600 -504,Ring,4,21,2621440,893386752000,58500,800,1200,800,1200,800,1200,400,600 -505,Ring,5,1,0,13520000,3600,1300,1400,1200,1300,0,0,0,0 -506,Ring,5,2,0,27040000,3600,1300,1400,1200,1300,0,0,0,0 -507,Ring,5,3,0,54080000,3600,1300,1400,1200,1300,0,0,0,0 -508,Ring,5,4,20,108160000,3600,3500,3600,3500,3600,2000,2000,1500,1500 -509,Ring,5,5,40,216320000,3600,1300,1400,1200,1300,0,0,0,0 -510,Ring,5,6,80,432640000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -511,Ring,5,7,160,865280000,3600,1300,1400,1200,1300,0,0,0,0 -512,Ring,5,8,320,1730560000,3600,1300,1400,1200,1300,0,0,0,0 -513,Ring,5,9,640,3461120000,3600,1300,1400,1200,1300,2000,2000,1500,1500 -514,Ring,5,10,1280,6922240000,3600,1300,1400,1200,1300,0,0,0,0 -515,Ring,5,11,2560,13844480000,3600,1300,1400,1200,1300,0,0,0,0 -516,Ring,5,12,5120,27688960000,3600,1300,1400,1200,1300,0,0,0,0 -517,Ring,5,13,10240,55377920000,3600,1300,1400,1200,1300,0,0,0,0 -518,Ring,5,14,20480,110755840000,3600,1300,1400,1200,1300,0,0,0,0 -519,Ring,5,15,40960,221511680000,3600,1300,1400,1200,1300,0,0,0,0 -520,Ring,5,16,81920,443023360000,3600,1300,1400,1200,1300,0,0,0,0 -521,Ring,5,17,163840,886046720000,3600,1300,1400,1200,1300,0,0,0,0 -522,Ring,5,18,327680,1772093440000,3600,1300,1400,1200,1300,0,0,0,0 -523,Ring,5,19,655360,3544186880000,3600,1300,1400,1200,1300,0,0,0,0 -524,Ring,5,20,1310720,7088373760000,3600,1300,1400,1200,1300,0,0,0,0 -525,Ring,5,21,2621440,14176747520000,3600,1300,1400,1200,1300,0,0,0,0 +id,item_sub_type,grade,level,cost,exp,required_block,base_stat_growth_min,base_stat_growth_max,extra_stat_growth_min,extra_stat_growth_max,extra_skill_damage_growth_min,extra_skill_damage_growth_max,extra_skill_chance_growth_min,extra_skill_chance_growth_max +1,Weapon,1,1,0,10,25,800,1200,0,0,0,0,0,0 +2,Weapon,1,2,0,30,87,800,1200,0,0,0,0,0,0 +3,Weapon,1,3,0,70,212,800,1200,0,0,0,0,0,0 +4,Weapon,1,4,20,150,837,800,1200,2500,3500,2500,3500,1200,1800 +5,Weapon,1,5,40,310,1762,800,1200,0,0,0,0,0,0 +6,Weapon,1,6,80,630,3062,800,1200,0,0,0,0,0,0 +7,Weapon,1,7,160,1270,4362,800,1200,2500,3500,2500,3500,1200,1800 +8,Weapon,1,8,320,2550,5662,800,1200,600,1000,600,1000,400,600 +9,Weapon,1,9,640,5110,6962,800,1200,600,1000,600,1000,400,600 +10,Weapon,1,10,1280,10230,8262,800,1200,1100,1700,1100,1700,700,1100 +11,Weapon,1,11,2560,20470,9562,800,1200,600,1000,600,1000,400,600 +12,Weapon,1,12,5120,40950,10862,800,1200,600,1000,600,1000,400,600 +13,Weapon,1,13,10240,81910,12162,800,1200,1100,1700,1100,1700,700,1100 +14,Weapon,1,14,20480,163830,13462,800,1200,600,1000,600,1000,400,600 +15,Weapon,1,15,40960,327670,14762,800,1200,600,1000,600,1000,400,600 +16,Weapon,1,16,81920,655350,16062,800,1200,1100,1700,1100,1700,700,1100 +17,Weapon,1,17,163840,1310710,17362,800,1200,600,1000,600,1000,400,600 +18,Weapon,1,18,327680,2621430,18662,800,1200,600,1000,600,1000,400,600 +19,Weapon,1,19,655360,5242870,19962,800,1200,1100,1700,1100,1700,700,1100 +20,Weapon,1,20,1310720,10485750,21262,800,1200,800,1200,800,1200,400,600 +21,Weapon,1,21,2621440,20971510,22562,800,1200,800,1200,800,1200,400,600 +22,Weapon,2,1,0,200,37,800,1200,0,0,0,0,0,0 +23,Weapon,2,2,0,600,130,800,1200,0,0,0,0,0,0 +24,Weapon,2,3,0,1400,317,800,1200,0,0,0,0,0,0 +25,Weapon,2,4,20,3000,1254,800,1200,2500,3500,2500,3500,1200,1800 +26,Weapon,2,5,40,6200,2641,800,1200,0,0,0,0,0,0 +27,Weapon,2,6,80,12600,4591,800,1200,0,0,0,0,0,0 +28,Weapon,2,7,160,25400,6541,800,1200,2500,3500,2500,3500,1200,1800 +29,Weapon,2,8,320,51000,8491,800,1200,600,1000,600,1000,400,600 +30,Weapon,2,9,640,102200,10441,800,1200,600,1000,600,1000,400,600 +31,Weapon,2,10,1280,204600,12391,800,1200,1100,1700,1100,1700,700,1100 +32,Weapon,2,11,2560,409400,14341,800,1200,600,1000,600,1000,400,600 +33,Weapon,2,12,5120,819000,16291,800,1200,600,1000,600,1000,400,600 +34,Weapon,2,13,10240,1638200,18241,800,1200,1100,1700,1100,1700,700,1100 +35,Weapon,2,14,20480,3276600,20191,800,1200,600,1000,600,1000,400,600 +36,Weapon,2,15,40960,6553400,22141,800,1200,600,1000,600,1000,400,600 +37,Weapon,2,16,81920,13107000,24091,800,1200,1100,1700,1100,1700,700,1100 +38,Weapon,2,17,163840,26214200,26041,800,1200,600,1000,600,1000,400,600 +39,Weapon,2,18,327680,52428600,27991,800,1200,600,1000,600,1000,400,600 +40,Weapon,2,19,655360,104857400,29941,800,1200,1100,1700,1100,1700,700,1100 +41,Weapon,2,20,1310720,209715000,31891,800,1200,800,1200,800,1200,400,600 +42,Weapon,2,21,2621440,419430200,33841,800,1200,800,1200,800,1200,400,600 +43,Weapon,3,1,0,4000,75,800,1200,0,0,0,0,0,0 +44,Weapon,3,2,0,12000,262,800,1200,0,0,0,0,0,0 +45,Weapon,3,3,0,28000,637,800,1200,0,0,0,0,0,0 +46,Weapon,3,4,20,60000,2512,800,1200,2500,3500,2500,3500,1200,1800 +47,Weapon,3,5,40,124000,5287,800,1200,0,0,0,0,0,0 +48,Weapon,3,6,80,252000,9187,800,1200,0,0,0,0,0,0 +49,Weapon,3,7,160,508000,13087,800,1200,2500,3500,2500,3500,1200,1800 +50,Weapon,3,8,320,1020000,16987,800,1200,600,1000,600,1000,400,600 +51,Weapon,3,9,640,2044000,20887,800,1200,600,1000,600,1000,400,600 +52,Weapon,3,10,1280,4092000,24787,800,1200,1100,1700,1100,1700,700,1100 +53,Weapon,3,11,2560,8188000,28687,800,1200,600,1000,600,1000,400,600 +54,Weapon,3,12,5120,16380000,32587,800,1200,600,1000,600,1000,400,600 +55,Weapon,3,13,10240,32764000,36487,800,1200,1100,1700,1100,1700,700,1100 +56,Weapon,3,14,20480,65532000,40387,800,1200,600,1000,600,1000,400,600 +57,Weapon,3,15,40960,131068000,44287,800,1200,600,1000,600,1000,400,600 +58,Weapon,3,16,81920,262140000,48187,800,1200,1100,1700,1100,1700,700,1100 +59,Weapon,3,17,163840,524284000,52087,800,1200,600,1000,600,1000,400,600 +60,Weapon,3,18,327680,1048572000,55987,800,1200,600,1000,600,1000,400,600 +61,Weapon,3,19,655360,2097148000,59887,800,1200,1100,1700,1100,1700,700,1100 +62,Weapon,3,20,1310720,4194300000,63787,800,1200,800,1200,800,1200,400,600 +63,Weapon,3,21,2621440,8388604000,67687,800,1200,800,1200,800,1200,400,600 +64,Weapon,4,1,0,150000,162,800,1200,0,0,0,0,0,0 +65,Weapon,4,2,0,300000,568,800,1200,0,0,0,0,0,0 +66,Weapon,4,3,0,600000,1380,800,1200,0,0,0,0,0,0 +67,Weapon,4,4,20,1200000,5442,800,1200,2500,3500,2500,3500,1200,1800 +68,Weapon,4,5,40,2400000,11454,800,1200,0,0,0,0,0,0 +69,Weapon,4,6,80,4800000,19904,800,1200,0,0,0,0,0,0 +70,Weapon,4,7,160,9600000,28354,800,1200,2500,3500,2500,3500,1200,1800 +71,Weapon,4,8,320,19200000,36804,800,1200,600,1000,600,1000,400,600 +72,Weapon,4,9,640,38400000,45254,800,1200,600,1000,600,1000,400,600 +73,Weapon,4,10,1280,76800000,53704,800,1200,1100,1700,1100,1700,700,1100 +74,Weapon,4,11,2560,153600000,62154,800,1200,600,1000,600,1000,400,600 +75,Weapon,4,12,5120,307200000,70604,800,1200,600,1000,600,1000,400,600 +76,Weapon,4,13,10240,614400000,79054,800,1200,1100,1700,1100,1700,700,1100 +77,Weapon,4,14,20480,1228800000,87504,800,1200,600,1000,600,1000,400,600 +78,Weapon,4,15,40960,2457600000,95954,800,1200,600,1000,600,1000,400,600 +79,Weapon,4,16,81920,4915200000,104404,800,1200,1100,1700,1100,1700,700,1100 +80,Weapon,4,17,163840,9830400000,112854,800,1200,600,1000,600,1000,400,600 +81,Weapon,4,18,327680,19660800000,121304,800,1200,600,1000,600,1000,400,600 +82,Weapon,4,19,655360,39321600000,129754,800,1200,1100,1700,1100,1700,700,1100 +83,Weapon,4,20,1310720,78643200000,138204,800,1200,800,1200,800,1200,400,600 +84,Weapon,4,21,2621440,157286400000,146654,800,1200,800,1200,800,1200,400,600 +85,Weapon,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +86,Weapon,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +87,Weapon,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +88,Weapon,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +89,Weapon,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +90,Weapon,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +91,Weapon,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +92,Weapon,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +93,Weapon,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +94,Weapon,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +95,Weapon,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +96,Weapon,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +97,Weapon,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +98,Weapon,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +99,Weapon,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +100,Weapon,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +101,Weapon,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +102,Weapon,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +103,Weapon,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +104,Weapon,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +105,Weapon,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +106,Armor,1,1,0,10,20,800,1200,0,0,0,0,0,0 +107,Armor,1,2,0,30,70,800,1200,0,0,0,0,0,0 +108,Armor,1,3,0,70,170,800,1200,0,0,0,0,0,0 +109,Armor,1,4,20,150,670,800,1200,2500,3500,2500,3500,1200,1800 +110,Armor,1,5,40,310,1410,800,1200,0,0,0,0,0,0 +111,Armor,1,6,80,630,2450,800,1200,0,0,0,0,0,0 +112,Armor,1,7,160,1270,3490,800,1200,2500,3500,2500,3500,1200,1800 +113,Armor,1,8,320,2550,4530,800,1200,600,1000,600,1000,400,600 +114,Armor,1,9,640,5110,5570,800,1200,600,1000,600,1000,400,600 +115,Armor,1,10,1280,10230,6610,800,1200,1100,1700,1100,1700,700,1100 +116,Armor,1,11,2560,20470,7650,800,1200,600,1000,600,1000,400,600 +117,Armor,1,12,5120,40950,8690,800,1200,600,1000,600,1000,400,600 +118,Armor,1,13,10240,81910,9730,800,1200,1100,1700,1100,1700,700,1100 +119,Armor,1,14,20480,163830,10770,800,1200,600,1000,600,1000,400,600 +120,Armor,1,15,40960,327670,11810,800,1200,600,1000,600,1000,400,600 +121,Armor,1,16,81920,655350,12850,800,1200,1100,1700,1100,1700,700,1100 +122,Armor,1,17,163840,1310710,13890,800,1200,600,1000,600,1000,400,600 +123,Armor,1,18,327680,2621430,14930,800,1200,600,1000,600,1000,400,600 +124,Armor,1,19,655360,5242870,15970,800,1200,1100,1700,1100,1700,700,1100 +125,Armor,1,20,1310720,10485750,17010,800,1200,800,1200,800,1200,400,600 +126,Armor,1,21,2621440,20971510,18050,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,105,800,1200,0,0,0,0,0,0 +129,Armor,2,3,0,1400,255,800,1200,0,0,0,0,0,0 +130,Armor,2,4,20,3000,1005,800,1200,2500,3500,2500,3500,1200,1800 +131,Armor,2,5,40,6200,2115,800,1200,0,0,0,0,0,0 +132,Armor,2,6,80,12600,3675,800,1200,0,0,0,0,0,0 +133,Armor,2,7,160,25400,5235,800,1200,2500,3500,2500,3500,1200,1800 +134,Armor,2,8,320,51000,6795,800,1200,600,1000,600,1000,400,600 +135,Armor,2,9,640,102200,8355,800,1200,600,1000,600,1000,400,600 +136,Armor,2,10,1280,204600,9915,800,1200,1100,1700,1100,1700,700,1100 +137,Armor,2,11,2560,409400,11475,800,1200,600,1000,600,1000,400,600 +138,Armor,2,12,5120,819000,13035,800,1200,600,1000,600,1000,400,600 +139,Armor,2,13,10240,1638200,14595,800,1200,1100,1700,1100,1700,700,1100 +140,Armor,2,14,20480,3276600,16155,800,1200,600,1000,600,1000,400,600 +141,Armor,2,15,40960,6553400,17715,800,1200,600,1000,600,1000,400,600 +142,Armor,2,16,81920,13107000,19275,800,1200,1100,1700,1100,1700,700,1100 +143,Armor,2,17,163840,26214200,20835,800,1200,600,1000,600,1000,400,600 +144,Armor,2,18,327680,52428600,22395,800,1200,600,1000,600,1000,400,600 +145,Armor,2,19,655360,104857400,23955,800,1200,1100,1700,1100,1700,700,1100 +146,Armor,2,20,1310720,209715000,25515,800,1200,800,1200,800,1200,400,600 +147,Armor,2,21,2621440,419430200,27075,800,1200,800,1200,800,1200,400,600 +148,Armor,3,1,0,4000,60,800,1200,0,0,0,0,0,0 +149,Armor,3,2,0,12000,210,800,1200,0,0,0,0,0,0 +150,Armor,3,3,0,28000,510,800,1200,0,0,0,0,0,0 +151,Armor,3,4,20,60000,2010,800,1200,2500,3500,2500,3500,1200,1800 +152,Armor,3,5,40,124000,4230,800,1200,0,0,0,0,0,0 +153,Armor,3,6,80,252000,7350,800,1200,0,0,0,0,0,0 +154,Armor,3,7,160,508000,10470,800,1200,2500,3500,2500,3500,1200,1800 +155,Armor,3,8,320,1020000,13590,800,1200,600,1000,600,1000,400,600 +156,Armor,3,9,640,2044000,16710,800,1200,600,1000,600,1000,400,600 +157,Armor,3,10,1280,4092000,19830,800,1200,1100,1700,1100,1700,700,1100 +158,Armor,3,11,2560,8188000,22950,800,1200,600,1000,600,1000,400,600 +159,Armor,3,12,5120,16380000,26070,800,1200,600,1000,600,1000,400,600 +160,Armor,3,13,10240,32764000,29190,800,1200,1100,1700,1100,1700,700,1100 +161,Armor,3,14,20480,65532000,32310,800,1200,600,1000,600,1000,400,600 +162,Armor,3,15,40960,131068000,35430,800,1200,600,1000,600,1000,400,600 +163,Armor,3,16,81920,262140000,38550,800,1200,1100,1700,1100,1700,700,1100 +164,Armor,3,17,163840,524284000,41670,800,1200,600,1000,600,1000,400,600 +165,Armor,3,18,327680,1048572000,44790,800,1200,600,1000,600,1000,400,600 +166,Armor,3,19,655360,2097148000,47910,800,1200,1100,1700,1100,1700,700,1100 +167,Armor,3,20,1310720,4194300000,51030,800,1200,800,1200,800,1200,400,600 +168,Armor,3,21,2621440,8388604000,54150,800,1200,800,1200,800,1200,400,600 +169,Armor,4,1,0,150000,130,800,1200,0,0,0,0,0,0 +170,Armor,4,2,0,300000,455,800,1200,0,0,0,0,0,0 +171,Armor,4,3,0,600000,1105,800,1200,0,0,0,0,0,0 +172,Armor,4,4,20,1200000,4355,800,1200,2500,3500,2500,3500,1200,1800 +173,Armor,4,5,40,2400000,9165,800,1200,0,0,0,0,0,0 +174,Armor,4,6,80,4800000,15925,800,1200,0,0,0,0,0,0 +175,Armor,4,7,160,9600000,22685,800,1200,2500,3500,2500,3500,1200,1800 +176,Armor,4,8,320,19200000,29445,800,1200,600,1000,600,1000,400,600 +177,Armor,4,9,640,38400000,36205,800,1200,600,1000,600,1000,400,600 +178,Armor,4,10,1280,76800000,42965,800,1200,1100,1700,1100,1700,700,1100 +179,Armor,4,11,2560,153600000,49725,800,1200,600,1000,600,1000,400,600 +180,Armor,4,12,5120,307200000,56485,800,1200,600,1000,600,1000,400,600 +181,Armor,4,13,10240,614400000,63245,800,1200,1100,1700,1100,1700,700,1100 +182,Armor,4,14,20480,1228800000,70005,800,1200,600,1000,600,1000,400,600 +183,Armor,4,15,40960,2457600000,76765,800,1200,600,1000,600,1000,400,600 +184,Armor,4,16,81920,4915200000,83525,800,1200,1100,1700,1100,1700,700,1100 +185,Armor,4,17,163840,9830400000,90285,800,1200,600,1000,600,1000,400,600 +186,Armor,4,18,327680,19660800000,97045,800,1200,600,1000,600,1000,400,600 +187,Armor,4,19,655360,39321600000,103805,800,1200,1100,1700,1100,1700,700,1100 +188,Armor,4,20,1310720,78643200000,110565,800,1200,800,1200,800,1200,400,600 +189,Armor,4,21,2621440,157286400000,117325,800,1200,800,1200,800,1200,400,600 +190,Armor,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +191,Armor,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +192,Armor,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +193,Armor,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +194,Armor,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +195,Armor,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +196,Armor,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +197,Armor,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +198,Armor,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +199,Armor,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +200,Armor,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +201,Armor,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +202,Armor,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +203,Armor,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +204,Armor,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +205,Armor,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +206,Armor,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +207,Armor,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +208,Armor,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +209,Armor,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +210,Armor,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +211,Belt,1,1,0,10,20,800,1200,0,0,0,0,0,0 +212,Belt,1,2,0,30,70,800,1200,0,0,0,0,0,0 +213,Belt,1,3,0,70,170,800,1200,0,0,0,0,0,0 +214,Belt,1,4,20,150,670,800,1200,2500,3500,2500,3500,1200,1800 +215,Belt,1,5,40,310,1410,800,1200,0,0,0,0,0,0 +216,Belt,1,6,80,630,2450,800,1200,0,0,0,0,0,0 +217,Belt,1,7,160,1270,3490,800,1200,2500,3500,2500,3500,1200,1800 +218,Belt,1,8,320,2550,4530,800,1200,600,1000,600,1000,400,600 +219,Belt,1,9,640,5110,5570,800,1200,600,1000,600,1000,400,600 +220,Belt,1,10,1280,10230,6610,800,1200,1100,1700,1100,1700,700,1100 +221,Belt,1,11,2560,20470,7650,800,1200,600,1000,600,1000,400,600 +222,Belt,1,12,5120,40950,8690,800,1200,600,1000,600,1000,400,600 +223,Belt,1,13,10240,81910,9730,800,1200,1100,1700,1100,1700,700,1100 +224,Belt,1,14,20480,163830,10770,800,1200,600,1000,600,1000,400,600 +225,Belt,1,15,40960,327670,11810,800,1200,600,1000,600,1000,400,600 +226,Belt,1,16,81920,655350,12850,800,1200,1100,1700,1100,1700,700,1100 +227,Belt,1,17,163840,1310710,13890,800,1200,600,1000,600,1000,400,600 +228,Belt,1,18,327680,2621430,14930,800,1200,600,1000,600,1000,400,600 +229,Belt,1,19,655360,5242870,15970,800,1200,1100,1700,1100,1700,700,1100 +230,Belt,1,20,1310720,10485750,17010,800,1200,800,1200,800,1200,400,600 +231,Belt,1,21,2621440,20971510,18050,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,105,800,1200,0,0,0,0,0,0 +234,Belt,2,3,0,1400,255,800,1200,0,0,0,0,0,0 +235,Belt,2,4,20,3000,1005,800,1200,2500,3500,2500,3500,1200,1800 +236,Belt,2,5,40,6200,2115,800,1200,0,0,0,0,0,0 +237,Belt,2,6,80,12600,3675,800,1200,0,0,0,0,0,0 +238,Belt,2,7,160,25400,5235,800,1200,2500,3500,2500,3500,1200,1800 +239,Belt,2,8,320,51000,6795,800,1200,600,1000,600,1000,400,600 +240,Belt,2,9,640,102200,8355,800,1200,600,1000,600,1000,400,600 +241,Belt,2,10,1280,204600,9915,800,1200,1100,1700,1100,1700,700,1100 +242,Belt,2,11,2560,409400,11475,800,1200,600,1000,600,1000,400,600 +243,Belt,2,12,5120,819000,13035,800,1200,600,1000,600,1000,400,600 +244,Belt,2,13,10240,1638200,14595,800,1200,1100,1700,1100,1700,700,1100 +245,Belt,2,14,20480,3276600,16155,800,1200,600,1000,600,1000,400,600 +246,Belt,2,15,40960,6553400,17715,800,1200,600,1000,600,1000,400,600 +247,Belt,2,16,81920,13107000,19275,800,1200,1100,1700,1100,1700,700,1100 +248,Belt,2,17,163840,26214200,20835,800,1200,600,1000,600,1000,400,600 +249,Belt,2,18,327680,52428600,22395,800,1200,600,1000,600,1000,400,600 +250,Belt,2,19,655360,104857400,23955,800,1200,1100,1700,1100,1700,700,1100 +251,Belt,2,20,1310720,209715000,25515,800,1200,800,1200,800,1200,400,600 +252,Belt,2,21,2621440,419430200,27075,800,1200,800,1200,800,1200,400,600 +253,Belt,3,1,0,4000,60,800,1200,0,0,0,0,0,0 +254,Belt,3,2,0,12000,210,800,1200,0,0,0,0,0,0 +255,Belt,3,3,0,28000,510,800,1200,0,0,0,0,0,0 +256,Belt,3,4,20,60000,2010,800,1200,2500,3500,2500,3500,1200,1800 +257,Belt,3,5,40,124000,4230,800,1200,0,0,0,0,0,0 +258,Belt,3,6,80,252000,7350,800,1200,0,0,0,0,0,0 +259,Belt,3,7,160,508000,10470,800,1200,2500,3500,2500,3500,1200,1800 +260,Belt,3,8,320,1020000,13590,800,1200,600,1000,600,1000,400,600 +261,Belt,3,9,640,2044000,16710,800,1200,600,1000,600,1000,400,600 +262,Belt,3,10,1280,4092000,19830,800,1200,1100,1700,1100,1700,700,1100 +263,Belt,3,11,2560,8188000,22950,800,1200,600,1000,600,1000,400,600 +264,Belt,3,12,5120,16380000,26070,800,1200,600,1000,600,1000,400,600 +265,Belt,3,13,10240,32764000,29190,800,1200,1100,1700,1100,1700,700,1100 +266,Belt,3,14,20480,65532000,32310,800,1200,600,1000,600,1000,400,600 +267,Belt,3,15,40960,131068000,35430,800,1200,600,1000,600,1000,400,600 +268,Belt,3,16,81920,262140000,38550,800,1200,1100,1700,1100,1700,700,1100 +269,Belt,3,17,163840,524284000,41670,800,1200,600,1000,600,1000,400,600 +270,Belt,3,18,327680,1048572000,44790,800,1200,600,1000,600,1000,400,600 +271,Belt,3,19,655360,2097148000,47910,800,1200,1100,1700,1100,1700,700,1100 +272,Belt,3,20,1310720,4194300000,51030,800,1200,800,1200,800,1200,400,600 +273,Belt,3,21,2621440,8388604000,54150,800,1200,800,1200,800,1200,400,600 +274,Belt,4,1,0,150000,130,800,1200,0,0,0,0,0,0 +275,Belt,4,2,0,300000,455,800,1200,0,0,0,0,0,0 +276,Belt,4,3,0,600000,1105,800,1200,0,0,0,0,0,0 +277,Belt,4,4,20,1200000,4355,800,1200,2500,3500,2500,3500,1200,1800 +278,Belt,4,5,40,2400000,9165,800,1200,0,0,0,0,0,0 +279,Belt,4,6,80,4800000,15925,800,1200,0,0,0,0,0,0 +280,Belt,4,7,160,9600000,22685,800,1200,2500,3500,2500,3500,1200,1800 +281,Belt,4,8,320,19200000,29445,800,1200,600,1000,600,1000,400,600 +282,Belt,4,9,640,38400000,36205,800,1200,600,1000,600,1000,400,600 +283,Belt,4,10,1280,76800000,42965,800,1200,1100,1700,1100,1700,700,1100 +284,Belt,4,11,2560,153600000,49725,800,1200,600,1000,600,1000,400,600 +285,Belt,4,12,5120,307200000,56485,800,1200,600,1000,600,1000,400,600 +286,Belt,4,13,10240,614400000,63245,800,1200,1100,1700,1100,1700,700,1100 +287,Belt,4,14,20480,1228800000,70005,800,1200,600,1000,600,1000,400,600 +288,Belt,4,15,40960,2457600000,76765,800,1200,600,1000,600,1000,400,600 +289,Belt,4,16,81920,4915200000,83525,800,1200,1100,1700,1100,1700,700,1100 +290,Belt,4,17,163840,9830400000,90285,800,1200,600,1000,600,1000,400,600 +291,Belt,4,18,327680,19660800000,97045,800,1200,600,1000,600,1000,400,600 +292,Belt,4,19,655360,39321600000,103805,800,1200,1100,1700,1100,1700,700,1100 +293,Belt,4,20,1310720,78643200000,110565,800,1200,800,1200,800,1200,400,600 +294,Belt,4,21,2621440,157286400000,117325,800,1200,800,1200,800,1200,400,600 +295,Belt,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +296,Belt,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +297,Belt,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +298,Belt,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +299,Belt,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +300,Belt,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +301,Belt,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +302,Belt,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +303,Belt,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +304,Belt,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +305,Belt,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +306,Belt,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +307,Belt,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +308,Belt,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +309,Belt,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +310,Belt,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +311,Belt,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +312,Belt,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +313,Belt,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +314,Belt,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +315,Belt,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +316,Necklace,1,1,0,10,25,800,1200,0,0,0,0,0,0 +317,Necklace,1,2,0,30,87,800,1200,0,0,0,0,0,0 +318,Necklace,1,3,0,70,212,800,1200,0,0,0,0,0,0 +319,Necklace,1,4,20,150,837,800,1200,2500,3500,2500,3500,1200,1800 +320,Necklace,1,5,40,310,1762,800,1200,0,0,0,0,0,0 +321,Necklace,1,6,80,630,3062,800,1200,0,0,0,0,0,0 +322,Necklace,1,7,160,1270,4362,800,1200,2500,3500,2500,3500,1200,1800 +323,Necklace,1,8,320,2550,5662,800,1200,600,1000,600,1000,400,600 +324,Necklace,1,9,640,5110,6962,800,1200,600,1000,600,1000,400,600 +325,Necklace,1,10,1280,10230,8262,800,1200,1100,1700,1100,1700,700,1100 +326,Necklace,1,11,2560,20470,9562,800,1200,600,1000,600,1000,400,600 +327,Necklace,1,12,5120,40950,10862,800,1200,600,1000,600,1000,400,600 +328,Necklace,1,13,10240,81910,12162,800,1200,1100,1700,1100,1700,700,1100 +329,Necklace,1,14,20480,163830,13462,800,1200,600,1000,600,1000,400,600 +330,Necklace,1,15,40960,327670,14762,800,1200,600,1000,600,1000,400,600 +331,Necklace,1,16,81920,655350,16062,800,1200,1100,1700,1100,1700,700,1100 +332,Necklace,1,17,163840,1310710,17362,800,1200,600,1000,600,1000,400,600 +333,Necklace,1,18,327680,2621430,18662,800,1200,600,1000,600,1000,400,600 +334,Necklace,1,19,655360,5242870,19962,800,1200,1100,1700,1100,1700,700,1100 +335,Necklace,1,20,1310720,10485750,21262,800,1200,800,1200,800,1200,400,600 +336,Necklace,1,21,2621440,20971510,22562,800,1200,800,1200,800,1200,400,600 +337,Necklace,2,1,0,200,37,800,1200,0,0,0,0,0,0 +338,Necklace,2,2,0,600,130,800,1200,0,0,0,0,0,0 +339,Necklace,2,3,0,1400,317,800,1200,0,0,0,0,0,0 +340,Necklace,2,4,20,3000,1254,800,1200,2500,3500,2500,3500,1200,1800 +341,Necklace,2,5,40,6200,2641,800,1200,0,0,0,0,0,0 +342,Necklace,2,6,80,12600,4591,800,1200,0,0,0,0,0,0 +343,Necklace,2,7,160,25400,6541,800,1200,2500,3500,2500,3500,1200,1800 +344,Necklace,2,8,320,51000,8491,800,1200,600,1000,600,1000,400,600 +345,Necklace,2,9,640,102200,10441,800,1200,600,1000,600,1000,400,600 +346,Necklace,2,10,1280,204600,12391,800,1200,1100,1700,1100,1700,700,1100 +347,Necklace,2,11,2560,409400,14341,800,1200,600,1000,600,1000,400,600 +348,Necklace,2,12,5120,819000,16291,800,1200,600,1000,600,1000,400,600 +349,Necklace,2,13,10240,1638200,18241,800,1200,1100,1700,1100,1700,700,1100 +350,Necklace,2,14,20480,3276600,20191,800,1200,600,1000,600,1000,400,600 +351,Necklace,2,15,40960,6553400,22141,800,1200,600,1000,600,1000,400,600 +352,Necklace,2,16,81920,13107000,24091,800,1200,1100,1700,1100,1700,700,1100 +353,Necklace,2,17,163840,26214200,26041,800,1200,600,1000,600,1000,400,600 +354,Necklace,2,18,327680,52428600,27991,800,1200,600,1000,600,1000,400,600 +355,Necklace,2,19,655360,104857400,29941,800,1200,1100,1700,1100,1700,700,1100 +356,Necklace,2,20,1310720,209715000,31891,800,1200,800,1200,800,1200,400,600 +357,Necklace,2,21,2621440,419430200,33841,800,1200,800,1200,800,1200,400,600 +358,Necklace,3,1,0,4000,75,800,1200,0,0,0,0,0,0 +359,Necklace,3,2,0,12000,262,800,1200,0,0,0,0,0,0 +360,Necklace,3,3,0,28000,637,800,1200,0,0,0,0,0,0 +361,Necklace,3,4,20,60000,2512,800,1200,2500,3500,2500,3500,1200,1800 +362,Necklace,3,5,40,124000,5287,800,1200,0,0,0,0,0,0 +363,Necklace,3,6,80,252000,9187,800,1200,0,0,0,0,0,0 +364,Necklace,3,7,160,508000,13087,800,1200,2500,3500,2500,3500,1200,1800 +365,Necklace,3,8,320,1020000,16987,800,1200,600,1000,600,1000,400,600 +366,Necklace,3,9,640,2044000,20887,800,1200,600,1000,600,1000,400,600 +367,Necklace,3,10,1280,4092000,24787,800,1200,1100,1700,1100,1700,700,1100 +368,Necklace,3,11,2560,8188000,28687,800,1200,600,1000,600,1000,400,600 +369,Necklace,3,12,5120,16380000,32587,800,1200,600,1000,600,1000,400,600 +370,Necklace,3,13,10240,32764000,36487,800,1200,1100,1700,1100,1700,700,1100 +371,Necklace,3,14,20480,65532000,40387,800,1200,600,1000,600,1000,400,600 +372,Necklace,3,15,40960,131068000,44287,800,1200,600,1000,600,1000,400,600 +373,Necklace,3,16,81920,262140000,48187,800,1200,1100,1700,1100,1700,700,1100 +374,Necklace,3,17,163840,524284000,52087,800,1200,600,1000,600,1000,400,600 +375,Necklace,3,18,327680,1048572000,55987,800,1200,600,1000,600,1000,400,600 +376,Necklace,3,19,655360,2097148000,59887,800,1200,1100,1700,1100,1700,700,1100 +377,Necklace,3,20,1310720,4194300000,63787,800,1200,800,1200,800,1200,400,600 +378,Necklace,3,21,2621440,8388604000,67687,800,1200,800,1200,800,1200,400,600 +379,Necklace,4,1,0,150000,162,800,1200,0,0,0,0,0,0 +380,Necklace,4,2,0,300000,568,800,1200,0,0,0,0,0,0 +381,Necklace,4,3,0,600000,1380,800,1200,0,0,0,0,0,0 +382,Necklace,4,4,20,1200000,5442,800,1200,2500,3500,2500,3500,1200,1800 +383,Necklace,4,5,40,2400000,11454,800,1200,0,0,0,0,0,0 +384,Necklace,4,6,80,4800000,19904,800,1200,0,0,0,0,0,0 +385,Necklace,4,7,160,9600000,28354,800,1200,2500,3500,2500,3500,1200,1800 +386,Necklace,4,8,320,19200000,36804,800,1200,600,1000,600,1000,400,600 +387,Necklace,4,9,640,38400000,45254,800,1200,600,1000,600,1000,400,600 +388,Necklace,4,10,1280,76800000,53704,800,1200,1100,1700,1100,1700,700,1100 +389,Necklace,4,11,2560,153600000,62154,800,1200,600,1000,600,1000,400,600 +390,Necklace,4,12,5120,307200000,70604,800,1200,600,1000,600,1000,400,600 +391,Necklace,4,13,10240,614400000,79054,800,1200,1100,1700,1100,1700,700,1100 +392,Necklace,4,14,20480,1228800000,87504,800,1200,600,1000,600,1000,400,600 +393,Necklace,4,15,40960,2457600000,95954,800,1200,600,1000,600,1000,400,600 +394,Necklace,4,16,81920,4915200000,104404,800,1200,1100,1700,1100,1700,700,1100 +395,Necklace,4,17,163840,9830400000,112854,800,1200,600,1000,600,1000,400,600 +396,Necklace,4,18,327680,19660800000,121304,800,1200,600,1000,600,1000,400,600 +397,Necklace,4,19,655360,39321600000,129754,800,1200,1100,1700,1100,1700,700,1100 +398,Necklace,4,20,1310720,78643200000,138204,800,1200,800,1200,800,1200,400,600 +399,Necklace,4,21,2621440,157286400000,146654,800,1200,800,1200,800,1200,400,600 +400,Necklace,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +401,Necklace,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +402,Necklace,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +403,Necklace,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +404,Necklace,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +405,Necklace,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +406,Necklace,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +407,Necklace,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +408,Necklace,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +409,Necklace,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +410,Necklace,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +411,Necklace,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +412,Necklace,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +413,Necklace,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +414,Necklace,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +415,Necklace,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +416,Necklace,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +417,Necklace,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +418,Necklace,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +419,Necklace,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +420,Necklace,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +421,Ring,1,1,0,10,30,800,1200,0,0,0,0,0,0 +422,Ring,1,2,0,30,105,800,1200,0,0,0,0,0,0 +423,Ring,1,3,0,70,255,800,1200,0,0,0,0,0,0 +424,Ring,1,4,20,150,1005,800,1200,2500,3500,2500,3500,1200,1800 +425,Ring,1,5,40,310,2115,800,1200,0,0,0,0,0,0 +426,Ring,1,6,80,630,3675,800,1200,0,0,0,0,0,0 +427,Ring,1,7,160,1270,5235,800,1200,2500,3500,2500,3500,1200,1800 +428,Ring,1,8,320,2550,6795,800,1200,600,1000,600,1000,400,600 +429,Ring,1,9,640,5110,8355,800,1200,600,1000,600,1000,400,600 +430,Ring,1,10,1280,10230,9915,800,1200,1100,1700,1100,1700,700,1100 +431,Ring,1,11,2560,20470,11475,800,1200,600,1000,600,1000,400,600 +432,Ring,1,12,5120,40950,13035,800,1200,600,1000,600,1000,400,600 +433,Ring,1,13,10240,81910,14595,800,1200,1100,1700,1100,1700,700,1100 +434,Ring,1,14,20480,163830,16155,800,1200,600,1000,600,1000,400,600 +435,Ring,1,15,40960,327670,17715,800,1200,600,1000,600,1000,400,600 +436,Ring,1,16,81920,655350,19275,800,1200,1100,1700,1100,1700,700,1100 +437,Ring,1,17,163840,1310710,20835,800,1200,600,1000,600,1000,400,600 +438,Ring,1,18,327680,2621430,22395,800,1200,600,1000,600,1000,400,600 +439,Ring,1,19,655360,5242870,23955,800,1200,1100,1700,1100,1700,700,1100 +440,Ring,1,20,1310720,10485750,25515,800,1200,800,1200,800,1200,400,600 +441,Ring,1,21,2621440,20971510,27075,800,1200,800,1200,800,1200,400,600 +442,Ring,2,1,0,200,45,800,1200,0,0,0,0,0,0 +443,Ring,2,2,0,600,157,800,1200,0,0,0,0,0,0 +444,Ring,2,3,0,1400,382,800,1200,0,0,0,0,0,0 +445,Ring,2,4,20,3000,1507,800,1200,2500,3500,2500,3500,1200,1800 +446,Ring,2,5,40,6200,3172,800,1200,0,0,0,0,0,0 +447,Ring,2,6,80,12600,5512,800,1200,0,0,0,0,0,0 +448,Ring,2,7,160,25400,7852,800,1200,2500,3500,2500,3500,1200,1800 +449,Ring,2,8,320,51000,10192,800,1200,600,1000,600,1000,400,600 +450,Ring,2,9,640,102200,12532,800,1200,600,1000,600,1000,400,600 +451,Ring,2,10,1280,204600,14872,800,1200,1100,1700,1100,1700,700,1100 +452,Ring,2,11,2560,409400,17212,800,1200,600,1000,600,1000,400,600 +453,Ring,2,12,5120,819000,19552,800,1200,600,1000,600,1000,400,600 +454,Ring,2,13,10240,1638200,21892,800,1200,1100,1700,1100,1700,700,1100 +455,Ring,2,14,20480,3276600,24232,800,1200,600,1000,600,1000,400,600 +456,Ring,2,15,40960,6553400,26572,800,1200,600,1000,600,1000,400,600 +457,Ring,2,16,81920,13107000,28912,800,1200,1100,1700,1100,1700,700,1100 +458,Ring,2,17,163840,26214200,31252,800,1200,600,1000,600,1000,400,600 +459,Ring,2,18,327680,52428600,33592,800,1200,600,1000,600,1000,400,600 +460,Ring,2,19,655360,104857400,35932,800,1200,1100,1700,1100,1700,700,1100 +461,Ring,2,20,1310720,209715000,38272,800,1200,800,1200,800,1200,400,600 +462,Ring,2,21,2621440,419430200,40612,800,1200,800,1200,800,1200,400,600 +463,Ring,3,1,0,4000,90,800,1200,0,0,0,0,0,0 +464,Ring,3,2,0,12000,315,800,1200,0,0,0,0,0,0 +465,Ring,3,3,0,28000,765,800,1200,0,0,0,0,0,0 +466,Ring,3,4,20,60000,3015,800,1200,2500,3500,2500,3500,1200,1800 +467,Ring,3,5,40,124000,6345,800,1200,0,0,0,0,0,0 +468,Ring,3,6,80,252000,11025,800,1200,0,0,0,0,0,0 +469,Ring,3,7,160,508000,15705,800,1200,2500,3500,2500,3500,1200,1800 +470,Ring,3,8,320,1020000,20385,800,1200,600,1000,600,1000,400,600 +471,Ring,3,9,640,2044000,25065,800,1200,600,1000,600,1000,400,600 +472,Ring,3,10,1280,4092000,29745,800,1200,1100,1700,1100,1700,700,1100 +473,Ring,3,11,2560,8188000,34425,800,1200,600,1000,600,1000,400,600 +474,Ring,3,12,5120,16380000,39105,800,1200,600,1000,600,1000,400,600 +475,Ring,3,13,10240,32764000,43785,800,1200,1100,1700,1100,1700,700,1100 +476,Ring,3,14,20480,65532000,48465,800,1200,600,1000,600,1000,400,600 +477,Ring,3,15,40960,131068000,53145,800,1200,600,1000,600,1000,400,600 +478,Ring,3,16,81920,262140000,57825,800,1200,1100,1700,1100,1700,700,1100 +479,Ring,3,17,163840,524284000,62505,800,1200,600,1000,600,1000,400,600 +480,Ring,3,18,327680,1048572000,67185,800,1200,600,1000,600,1000,400,600 +481,Ring,3,19,655360,2097148000,71865,800,1200,1100,1700,1100,1700,700,1100 +482,Ring,3,20,1310720,4194300000,76545,800,1200,800,1200,800,1200,400,600 +483,Ring,3,21,2621440,8388604000,81225,800,1200,800,1200,800,1200,400,600 +484,Ring,4,1,0,150000,195,800,1200,0,0,0,0,0,0 +485,Ring,4,2,0,300000,682,800,1200,0,0,0,0,0,0 +486,Ring,4,3,0,600000,1657,800,1200,0,0,0,0,0,0 +487,Ring,4,4,20,1200000,6532,800,1200,2500,3500,2500,3500,1200,1800 +488,Ring,4,5,40,2400000,13747,800,1200,0,0,0,0,0,0 +489,Ring,4,6,80,4800000,23887,800,1200,0,0,0,0,0,0 +490,Ring,4,7,160,9600000,34027,800,1200,2500,3500,2500,3500,1200,1800 +491,Ring,4,8,320,19200000,44167,800,1200,600,1000,600,1000,400,600 +492,Ring,4,9,640,38400000,54307,800,1200,600,1000,600,1000,400,600 +493,Ring,4,10,1280,76800000,64447,800,1200,1100,1700,1100,1700,700,1100 +494,Ring,4,11,2560,153600000,74587,800,1200,600,1000,600,1000,400,600 +495,Ring,4,12,5120,307200000,84727,800,1200,600,1000,600,1000,400,600 +496,Ring,4,13,10240,614400000,94867,800,1200,1100,1700,1100,1700,700,1100 +497,Ring,4,14,20480,1228800000,105007,800,1200,600,1000,600,1000,400,600 +498,Ring,4,15,40960,2457600000,115147,800,1200,600,1000,600,1000,400,600 +499,Ring,4,16,81920,4915200000,125287,800,1200,1100,1700,1100,1700,700,1100 +500,Ring,4,17,163840,9830400000,135427,800,1200,600,1000,600,1000,400,600 +501,Ring,4,18,327680,19660800000,145567,800,1200,600,1000,600,1000,400,600 +502,Ring,4,19,655360,39321600000,155707,800,1200,1100,1700,1100,1700,700,1100 +503,Ring,4,20,1310720,78643200000,165847,800,1200,800,1200,800,1200,400,600 +504,Ring,4,21,2621440,157286400000,175987,800,1200,800,1200,800,1200,400,600 +505,Ring,5,1,0,4000000,3600,1300,1400,1200,1300,0,0,0,0 +506,Ring,5,2,0,8000000,7200,1300,1400,1200,1300,0,0,0,0 +507,Ring,5,3,0,16000000,10800,1300,1400,1200,1300,0,0,0,0 +508,Ring,5,4,20,32000000,14400,3500,3600,3500,3600,2000,2000,1500,1500 +509,Ring,5,5,40,64000000,18000,1300,1400,1200,1300,0,0,0,0 +510,Ring,5,6,80,128000000,21600,1300,1400,1200,1300,2000,2000,1500,1500 +511,Ring,5,7,160,256000000,25200,1300,1400,1200,1300,0,0,0,0 +512,Ring,5,8,320,512000000,28800,1300,1400,1200,1300,0,0,0,0 +513,Ring,5,9,640,1024000000,32400,1300,1400,1200,1300,2000,2000,1500,1500 +514,Ring,5,10,1280,2048000000,36000,1300,1400,1200,1300,0,0,0,0 +515,Ring,5,11,2560,4096000000,39600,1300,1400,1200,1300,0,0,0,0 +516,Ring,5,12,5120,8192000000,43200,1300,1400,1200,1300,0,0,0,0 +517,Ring,5,13,10240,16384000000,46800,1300,1400,1200,1300,0,0,0,0 +518,Ring,5,14,20480,32768000000,50400,1300,1400,1200,1300,0,0,0,0 +519,Ring,5,15,40960,65536000000,54000,1300,1400,1200,1300,0,0,0,0 +520,Ring,5,16,81920,131072000000,57600,1300,1400,1200,1300,0,0,0,0 +521,Ring,5,17,163840,262144000000,61200,1300,1400,1200,1300,0,0,0,0 +522,Ring,5,18,327680,524288000000,64800,1300,1400,1200,1300,0,0,0,0 +523,Ring,5,19,655360,1048576000000,68400,1300,1400,1200,1300,0,0,0,0 +524,Ring,5,20,1310720,2097152000000,72000,1300,1400,1200,1300,0,0,0,0 +525,Ring,5,21,2621440,4194304000000,75600,1300,1400,1200,1300,0,0,0,0 +526,Aura,1,1,0,2,1,600,700,600,700,0,0,0,0 +527,Aura,1,2,0,4,1,600,700,600,700,0,0,0,0 +528,Aura,1,3,0,8,1,600,700,600,700,600,700,800,900 +529,Aura,1,4,0,16,1,600,700,600,700,0,0,0,0 +530,Aura,1,5,0,32,1,600,700,600,700,0,0,0,0 +531,Aura,1,6,0,64,1,600,700,600,700,600,700,800,900 +532,Aura,1,7,0,128,1,600,700,600,700,0,0,0,0 +533,Aura,1,8,0,256,1,600,700,600,700,0,0,0,0 +534,Aura,1,9,0,512,1,600,700,600,700,600,700,800,900 +535,Aura,1,10,0,1024,1,600,700,600,700,300,400,200,200 +536,Aura,1,11,0,2048,1,600,700,600,700,300,400,200,200 +537,Aura,1,12,0,4096,1,600,700,600,700,300,400,200,200 +538,Aura,1,13,0,8192,1,600,700,600,700,300,400,200,200 +539,Aura,1,14,0,16384,1,600,700,600,700,300,400,200,200 +540,Aura,1,15,0,32768,1,600,700,600,700,300,400,200,200 +541,Aura,1,16,0,65536,1,600,700,600,700,300,400,200,200 +542,Aura,1,17,0,131072,1,600,700,600,700,300,400,200,200 +543,Aura,1,18,0,262144,1,600,700,600,700,300,400,200,200 +544,Aura,1,19,0,524288,1,600,700,600,700,300,400,200,200 +545,Aura,1,20,0,1048576,1,600,700,600,700,300,400,200,200 +546,Aura,1,21,0,2097152,1,600,700,600,700,300,400,200,200 +547,Aura,2,1,0,40,1,600,700,600,700,0,0,0,0 +548,Aura,2,2,0,80,1,600,700,600,700,0,0,0,0 +549,Aura,2,3,0,160,1,600,700,600,700,800,900,800,900 +550,Aura,2,4,0,320,1,600,700,600,700,0,0,0,0 +551,Aura,2,5,0,640,1,600,700,600,700,0,0,0,0 +552,Aura,2,6,0,1280,1,600,700,600,700,800,900,800,900 +553,Aura,2,7,0,2560,1,600,700,600,700,0,0,0,0 +554,Aura,2,8,0,5120,1,600,700,600,700,0,0,0,0 +555,Aura,2,9,0,10240,1,600,700,600,700,800,900,800,900 +556,Aura,2,10,0,20480,1,600,700,600,700,500,600,200,200 +557,Aura,2,11,0,40960,1,600,700,600,700,500,600,200,200 +558,Aura,2,12,0,81920,1,600,700,600,700,500,600,200,200 +559,Aura,2,13,0,163840,1,600,700,600,700,500,600,200,200 +560,Aura,2,14,0,327680,1,600,700,600,700,500,600,200,200 +561,Aura,2,15,0,655360,1,600,700,600,700,500,600,200,200 +562,Aura,2,16,0,1310720,1,600,700,600,700,500,600,200,200 +563,Aura,2,17,0,2621440,1,600,700,600,700,500,600,200,200 +564,Aura,2,18,0,5242880,1,600,700,600,700,500,600,200,200 +565,Aura,2,19,0,10485760,1,600,700,600,700,500,600,200,200 +566,Aura,2,20,0,20971520,1,600,700,600,700,500,600,200,200 +567,Aura,2,21,0,41943040,1,600,700,600,700,500,600,200,200 +568,Aura,3,1,0,800,1,600,700,600,700,0,0,0,0 +569,Aura,3,2,0,1600,1,600,700,600,700,0,0,0,0 +570,Aura,3,3,0,3200,1,600,700,600,700,1000,1100,800,900 +571,Aura,3,4,0,6400,1,600,700,600,700,0,0,0,0 +572,Aura,3,5,0,12800,1,600,700,600,700,0,0,0,0 +573,Aura,3,6,0,25600,1,600,700,600,700,1000,1100,800,900 +574,Aura,3,7,0,51200,1,600,700,600,700,0,0,0,0 +575,Aura,3,8,0,102400,1,600,700,600,700,0,0,0,0 +576,Aura,3,9,0,204800,1,600,700,600,700,1000,1100,800,900 +577,Aura,3,10,0,409600,1,600,700,600,700,800,900,200,200 +578,Aura,3,11,0,819200,1,600,700,600,700,800,900,200,200 +579,Aura,3,12,0,1638400,1,600,700,600,700,800,900,200,200 +580,Aura,3,13,0,3276800,1,600,700,600,700,800,900,200,200 +581,Aura,3,14,0,6553600,1,600,700,600,700,800,900,200,200 +582,Aura,3,15,0,13107200,1,600,700,600,700,800,900,200,200 +583,Aura,3,16,0,26214400,1,600,700,600,700,800,900,200,200 +584,Aura,3,17,0,52428800,1,600,700,600,700,800,900,200,200 +585,Aura,3,18,0,104857600,1,600,700,600,700,800,900,200,200 +586,Aura,3,19,0,209715200,1,600,700,600,700,800,900,200,200 +587,Aura,3,20,0,419430400,1,600,700,600,700,800,900,200,200 +588,Aura,3,21,0,838860800,1,600,700,600,700,800,900,200,200 +589,Aura,4,1,0,8000,1,700,800,700,800,0,0,0,0 +590,Aura,4,2,0,16000,1,800,900,800,900,0,0,0,0 +591,Aura,4,3,0,32000,1,900,1000,900,1000,3000,3100,800,900 +592,Aura,4,4,0,64000,1,1000,1100,1000,1100,0,0,0,0 +593,Aura,4,5,0,128000,1,1500,1600,1500,1600,0,0,0,0 +594,Aura,4,6,0,256000,1,2000,2100,2000,2100,3000,3100,800,900 +595,Aura,4,7,0,512000,1,1800,1900,1800,1900,0,0,0,0 +596,Aura,4,8,0,1024000,1,1600,1700,1600,1700,0,0,0,0 +597,Aura,4,9,0,2048000,1,1400,1500,1400,1500,3000,3100,800,900 +598,Aura,4,10,0,4096000,1,1200,1300,1200,1300,1200,1300,200,200 +599,Aura,4,11,0,8192000,1,1000,1100,1000,1100,1200,1300,200,200 +600,Aura,4,12,0,16384000,1,1000,1100,1000,1100,1200,1300,200,200 +601,Aura,4,13,0,32768000,1,1000,1100,1000,1100,1200,1300,200,200 +602,Aura,4,14,0,65536000,1,1000,1100,1000,1100,1200,1300,200,200 +603,Aura,4,15,0,131072000,1,1000,1100,1000,1100,1200,1300,200,200 +604,Aura,4,16,0,262144000,1,1000,1100,1000,1100,1200,1300,200,200 +605,Aura,4,17,0,524288000,1,1000,1100,1000,1100,1200,1300,200,200 +606,Aura,4,18,0,1048576000,1,1000,1100,1000,1100,1200,1300,200,200 +607,Aura,4,19,0,2097152000,1,1000,1100,1000,1100,1200,1300,200,200 +608,Aura,4,20,0,4194304000,1,1000,1100,1000,1100,1200,1300,200,200 +609,Aura,4,21,0,8388608000,1,1000,1100,1000,1100,1200,1300,200,200 +610,Aura,5,1,0,68000,1,700,800,700,800,0,0,0,0 +611,Aura,5,2,0,115600,1,800,900,800,900,0,0,0,0 +612,Aura,5,3,0,196520,1,900,1000,900,1000,3600,3700,800,900 +613,Aura,5,4,0,334084,1,1000,1100,1000,1100,0,0,0,0 +614,Aura,5,5,0,567942,1,1500,1600,1500,1600,0,0,0,0 +615,Aura,5,6,0,965501,1,2000,2100,2000,2100,3600,3700,800,900 +616,Aura,5,7,0,1641351,1,1800,1900,1800,1900,0,0,0,0 +617,Aura,5,8,0,2790296,1,1600,1700,1600,1700,0,0,0,0 +618,Aura,5,9,0,4743503,1,1400,1500,1400,1500,3600,3700,800,900 +619,Aura,5,10,0,8063955,1,1200,1300,1200,1300,1500,1600,200,200 +620,Aura,5,11,0,13708723,1,1000,1100,1000,1100,1500,1600,200,200 +621,Aura,5,12,0,23304829,1,1000,1100,1000,1100,1500,1600,200,200 +622,Aura,5,13,0,39618209,1,1000,1100,1000,1100,1500,1600,200,200 +623,Aura,5,14,0,67350955,1,1000,1100,1000,1100,1500,1600,200,200 +624,Aura,5,15,0,114496623,1,1000,1100,1000,1100,1500,1600,200,200 +625,Aura,5,16,0,194644259,1,1000,1100,1000,1100,1500,1600,200,200 +626,Aura,5,17,0,330895240,1,1000,1100,1000,1100,1500,1600,200,200 +627,Aura,5,18,0,562521908,1,1000,1100,1000,1100,1500,1600,200,200 +628,Aura,5,19,0,956287243,1,1000,1100,1000,1100,1500,1600,200,200 +629,Aura,5,20,0,1625688313,1,1000,1100,1000,1100,1500,1600,200,200 +630,Aura,5,21,0,2763670132,1,1000,1100,1000,1100,1500,1600,200,200 \ No newline at end of file diff --git a/Lib9c/TableCSV/CreateAvatarFavSheet.csv b/Lib9c/TableCSV/CreateAvatarFavSheet.csv index 84889ad319..bb9bb482ae 100644 --- a/Lib9c/TableCSV/CreateAvatarFavSheet.csv +++ b/Lib9c/TableCSV/CreateAvatarFavSheet.csv @@ -1,2 +1,3 @@ currency,quantity,target CRYSTAL,200000,Agent +RUNE_ADVENTURER,1,Avatar \ No newline at end of file diff --git a/Lib9c/TableCSV/CreateAvatarItemSheet.csv b/Lib9c/TableCSV/CreateAvatarItemSheet.csv index 580fb6c62a..cc1fdf1bc0 100644 --- a/Lib9c/TableCSV/CreateAvatarItemSheet.csv +++ b/Lib9c/TableCSV/CreateAvatarItemSheet.csv @@ -1,3 +1,4 @@ -item_id,count -10112000,1 -10512000,1 +ItemId,Count +10110000,1 +10210000,1 +303000,2 diff --git a/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv b/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv index bef98b2996..6e2ec099c8 100644 --- a/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv +++ b/Lib9c/TableCSV/Crystal/CrystalEquipmentGrindingSheet.csv @@ -174,4 +174,11 @@ id,enchant_base_id,gain_crystal 10452001,10451001,1000000 10453001,10451001,2000000 10454001,10451001,2000000 -13001000,13001000,1 +10610000,10610000,1000 +10620000,10620000,3000 +10630000,10630000,50000 +10620001,10620001,1000000 +10630001,10630001,2000000 +10640001,10640001,10000000 +10650001,10650001,20000000 +10650002,10650002,20000000 \ No newline at end of file diff --git a/Lib9c/TableCSV/Crystal/CrystalMonsterCollectionMultiplierSheet.csv b/Lib9c/TableCSV/Crystal/CrystalMonsterCollectionMultiplierSheet.csv index ee0d92b81a..138d62a132 100644 --- a/Lib9c/TableCSV/Crystal/CrystalMonsterCollectionMultiplierSheet.csv +++ b/Lib9c/TableCSV/Crystal/CrystalMonsterCollectionMultiplierSheet.csv @@ -4,4 +4,6 @@ level,multiplier 2,50 3,100 4,200 -5,300 \ No newline at end of file +5,300 +6,300 +7,300 \ No newline at end of file diff --git a/Lib9c/TableCSV/Event/EventMaterialItemRecipeSheet.csv b/Lib9c/TableCSV/Event/EventMaterialItemRecipeSheet.csv index 74ffce9ac5..a74bcb9d9f 100644 --- a/Lib9c/TableCSV/Event/EventMaterialItemRecipeSheet.csv +++ b/Lib9c/TableCSV/Event/EventMaterialItemRecipeSheet.csv @@ -1,3 +1,5 @@ id,result_consumable_item_id,result_consumable_item_count,material_item_count,material_item_id_1,material_item_id_2,material_item_id_3,material_item_id_4,material_item_id_5,material_item_id_6,material_item_id_7,material_item_id_8,material_item_id_9,material_item_id_10,material_item_id_11,material_item_id_12 -10020001,500000,3,15,700000,700001,700002,700003,700102,700104,700106,700202,700204,,,, -10020002,400000,20,10,700108,700206,,,,,,,,,, +10020001,400000,1000,100,700000,700001,700002,700003,700102,700104,700106,700202,700204,,, +10020002,400000,100,12,700000,700001,700002,700003,700102,700104,700106,700202,700204,,, +10020003,500000,3,45,700108,700206,,,,,,,,,, +10020004,500000,1,18,700108,700206,,,,,,,,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/GameConfigSheet.csv b/Lib9c/TableCSV/GameConfigSheet.csv index 59d2b5d5ed..f6029b8f14 100644 --- a/Lib9c/TableCSV/GameConfigSheet.csv +++ b/Lib9c/TableCSV/GameConfigSheet.csv @@ -1,36 +1,36 @@ key,value hourglass_per_block,3 action_point_max,120 -daily_reward_interval,1700 -daily_arena_interval,5040 +daily_reward_interval,2040 +daily_arena_interval,6048 weekly_arena_interval,56000 -required_appraise_block,10 +required_appraise_block,0 battle_arena_interval,4 rune_stat_slot_unlock_cost,100 rune_skill_slot_unlock_cost,1000 daily_rune_reward_amount,1 -daily_worldboss_interval,7200 +daily_worldboss_interval,8640 worldboss_required_interval,5 -stake_regular_fixed_reward_sheet_v2_start_block_index,6700000 -stake_regular_reward_sheet_v2_start_block_index,5510416 -stake_regular_reward_sheet_v3_start_block_index,6700000 -stake_regular_reward_sheet_v4_start_block_index,6910000 -stake_regular_reward_sheet_v5_start_block_index,7650000 -character_full_costume_slot,2 -character_hair_costume_slot,2 -character_ear_costume_slot,2 -character_eye_costume_slot,2 -character_tail_costume_slot,2 +stake_regular_fixed_reward_sheet_v2_start_block_index,1 +stake_regular_reward_sheet_v2_start_block_index,1 +stake_regular_reward_sheet_v3_start_block_index,2 +stake_regular_reward_sheet_v4_start_block_index,3 +stake_regular_reward_sheet_v5_start_block_index,4 +character_full_costume_slot,1 +character_hair_costume_slot,1 +character_ear_costume_slot,1 +character_eye_costume_slot,1 +character_tail_costume_slot,1 character_title_costume_slot,1 character_equipment_slot_weapon,1 -character_equipment_slot_armor,3 -character_equipment_slot_belt,5 -character_equipment_slot_necklace,8 -character_equipment_slot_ring1,13 -character_equipment_slot_ring2,46 +character_equipment_slot_armor,1 +character_equipment_slot_belt,1 +character_equipment_slot_necklace,1 +character_equipment_slot_ring1,1 +character_equipment_slot_ring2,1 character_equipment_slot_aura,1 character_consumable_slot_1,1 character_consumable_slot_2,35 character_consumable_slot_3,100 character_consumable_slot_4,200 -character_consumable_slot_5,350 +character_consumable_slot_5,350 \ No newline at end of file diff --git a/Lib9c/TableCSV/Garages/LoadIntoMyGaragesCostSheet.csv b/Lib9c/TableCSV/Garages/LoadIntoMyGaragesCostSheet.csv index aa5706e461..dbc28667ea 100644 --- a/Lib9c/TableCSV/Garages/LoadIntoMyGaragesCostSheet.csv +++ b/Lib9c/TableCSV/Garages/LoadIntoMyGaragesCostSheet.csv @@ -1,10 +1,7 @@ id,_memo,currency_ticker,fungible_id,garage_cost_per_unit -_id,int -_currency_ticker,(empty)|NCG|CRYSTAL... -_fungible_id,(empty)|3991e04dd808dc0bc24b21f5adb7bf1997312f8700daf1334bf34936e8a0813a|00dfffe23964af9b284d121dae476571b7836b8d9e2e5f510d92a840fecc64fe... -_garage_cost_per_unit,1|100|0.001... -1,ap portion(500000),,00dfffe23964af9b284d121dae476571b7836b8d9e2e5f510d92a840fecc64fe,0.16 -2,hourglass(400000),,3991e04dd808dc0bc24b21f5adb7bf1997312f8700daf1334bf34936e8a0813a,0.0016 -3,golden meat(800201),,1a755098a2bc0659a063107df62e2ff9b3cdaba34d96b79519f504b996f53820,1 -4,golden dust(600201),,f8faf92c9c0d0e8e06694361ea87bfc8b29a8ae8de93044b98470a57636ed0e0,10 -5,golden leaf runestone,RUNE_GOLDENLEAF,,10 +1,ap portion(500000),,00dfffe23964af9b284d121dae476571b7836b8d9e2e5f510d92a840fecc64fe,0.01 +2,hourglass(400000),,3991e04dd808dc0bc24b21f5adb7bf1997312f8700daf1334bf34936e8a0813a,0.0001 +3,silver dust(800201),,1a755098a2bc0659a063107df62e2ff9b3cdaba34d96b79519f504b996f53820,0.01 +4,golden dust(600201),,f8faf92c9c0d0e8e06694361ea87bfc8b29a8ae8de93044b98470a57636ed0e0,0.01 +5,golden leaf runestone,RUNE_GOLDENLEAF,,0.1 +6,crystal,CRYSTAL,,0.0000001 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/CostumeItemSheet.csv b/Lib9c/TableCSV/Item/CostumeItemSheet.csv index 444886feb8..c37c84bbf2 100644 --- a/Lib9c/TableCSV/Item/CostumeItemSheet.csv +++ b/Lib9c/TableCSV/Item/CostumeItemSheet.csv @@ -17,6 +17,12 @@ _spine_resource_path,`Title`: ``,,,, 40100009,흑마법사 이블리,FullCostume,5,Normal, 40100010,도끼 여전사 퓨리오사,FullCostume,5,Normal, 40100011,마도사 라미아 Lamia,FullCostume,5,Normal, +40100013,BSC 코스튬 (갈색 발키리),FullCostume,3,Normal, +40100014,BSC 코스튬 (흰색 발키리),FullCostume,3,Normal, +40100015,천상의 고양이 (사전예약보상),FullCostume,3,Normal, +40100016,마법사 릴리 (사전예약보상),FullCostume,3,Normal, +40100017,퓨리오사 (사전예약보상),FullCostume,4,Normal, +40100019,창술사 루이 (챔피언쉽 6 보상),FullCostume,5,Normal, 40200001,갈색 머리카락,HairCostume,1,Normal, 40200002,파란색 머리카락,HairCostume,1,Normal, 40200003,초록색 머리카락,HairCostume,1,Normal, @@ -59,4 +65,5 @@ _spine_resource_path,`Title`: ``,,,, 49900007,Championship 1 Ranker,Title,5,Normal, 49900008,Championship 2 Ranker,Title,5,Normal, 49900009,2022 Grand Finale,Title,3,Normal, -49900010,Championship 4 Ranker,Title,5,Normal, \ No newline at end of file +49900010,Championship 4 Ranker,Title,5,Normal, +49900011,Great Adventurer 1,Title,5,Normal, \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/CostumeStatSheet.csv b/Lib9c/TableCSV/Item/CostumeStatSheet.csv index f82dae6209..51973ce915 100644 --- a/Lib9c/TableCSV/Item/CostumeStatSheet.csv +++ b/Lib9c/TableCSV/Item/CostumeStatSheet.csv @@ -25,4 +25,16 @@ id,costume_id,stat_type,stat 24,40100010,ATK,530 25,49900009,HIT,1210 26,40100011,HP,8550 -27,49900010,ATK,500 \ No newline at end of file +27,49900010,ATK,500 +28,40100013,ATK,150 +29,40100013,HIT,490 +30,40100014,ATK,150 +31,40100014,SPD,465 +32,40100015,SPD,400 +33,40100015,ATK,105 +34,40100016,HIT,730 +35,40100017,DEF,300 +36,40100017,ATK,105 +37,40100019,HP,26040 +38,40100019,SPD,1368 +39,49900011,DEF,1908 diff --git a/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv index 9e873554e7..f377428d79 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemOptionSheet.csv @@ -1810,4 +1810,33 @@ id,stat_type,stat_min,stat_max,skill_id,skill_damage_min,skill_damage_max,skill_ 1055400031,DEF,1835,2415,,,,,,,, 1055400032,ATK,1859,2359,,,,,,,, 1055400033,SPD,14965,19711,,,,,,,, -1055400034,,,,220008,0,0,9,9,1800,1900,SPD \ No newline at end of file +1055400034,,,,220008,0,0,9,9,1800,1900,SPD +1061000011,HIT,440,650,,,,,,,, +1061000012,SPD,320,480,,,,,,,, +1061000013,,,,240006,20,20,30,30,,, +1062000011,HIT,900,1350,,,,,,,, +1062000012,SPD,640,950,,,,,,,, +1062000013,,,,240006,20,20,30,30,,, +1063000011,HIT,1850,2800,,,,,,,, +1063000012,SPD,1350,2000,,,,,,,, +1063000013,,,,240006,20,20,30,30,,, +1062000111,ATK,23,35,,,,,,,, +1062000112,HP,240,350,,,,,,,, +1062000113,DEF,14,21,,,,,,,, +1062000114,,,,230005,300,300,30,30,,, +1063000111,ATK,140,210,,,,,,,, +1063000112,HP,470,700,,,,,,,, +1063000113,DEF,70,105,,,,,,,, +1063000114,,,,230005,300,300,30,30,,, +1064000111,ATK,1680,2450,,,,,,,, +1064000112,HP,8900,13300,,,,,,,, +1064000113,DEF,470,700,,,,,,,, +1064000114,,,,230006,500,500,30,30,,, +1065000111,ATK,3780,5600,,,,,,,, +1065000112,HP,15400,23100,,,,,,,, +1065000113,DEF,1260,1820,,,,,,,, +1065000114,,,,230007,800,800,30,30,,, +1065000121,ATK,5700,5700,,,,,,,, +1065000122,HP,23200,23200,,,,,,,, +1065000123,DEF,1830,1830,,,,,,,, +1065000124,,,,230007,800,800,30,30,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv index 922ce5c66f..6b4f0831d0 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemRecipeSheet.csv @@ -1,164 +1,86 @@ 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,5,3,373,374,375,0,Weapon -2,10111000,303000,2,0,0,5,11,1,2,3,2,Weapon -3,10112000,303000,2,0,0,5,19,4,5,6,2,Weapon -4,10113000,303000,8,0,0,155,51,7,8,9,19,Weapon -5,10114000,303000,12,0,0,477,99,10,11,12,64,Weapon -6,10120000,303001,4,0,0,37,27,376,377,378,8,Weapon -7,10121000,303001,4,0,0,45,29,13,14,15,11,Weapon -8,10122000,303001,6,0,0,89,39,16,17,18,15,Weapon -9,10123000,303001,15,0,0,1167,114,19,20,21,1056,Weapon -10,10124000,303001,24,0,0,7155,174,22,23,24,22560,Weapon -11,10130000,303002,7,0,0,241,63,379,380,381,234,Weapon -12,10131000,303002,8,0,0,257,66,25,26,27,279,Weapon -13,10132000,303002,9,0,0,329,78,28,29,30,317,Weapon -14,10133000,303002,27,0,0,9807,190,31,32,33,41040,Weapon -15,10134000,303002,47,0,0,21585,204,34,35,36,167040,Weapon -16,10130001,303002,17,0,0,1482,130,382,383,384,8340,Weapon -17,10131001,303002,19,0,0,1643,138,37,38,39,14520,Weapon -18,10132001,303002,21,0,0,5190,154,40,41,42,32040,Weapon -19,10133001,303002,61,0,0,28050,220,43,44,45,216180,Weapon -20,10134001,303002,73,0,0,34302,236,46,47,48,495900,Weapon -21,10140000,303003,250,0,0,40000,299,101400001,101400002,101400003,1404000,Weapon -22,10141000,303003,120,0,0,20000,255,101410001,101410002,101410003,1532100,Weapon -23,10142000,303003,120,0,0,24000,265,101420001,101420002,101420003,1532100,Weapon -24,10143000,303003,180,0,0,28000,277,101430001,101430002,101430003,1532100,Weapon -25,10144000,303003,180,0,0,32000,290,101440001,101440002,101440003,1532100,Weapon +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,7155,174,22,23,,22560,Weapon +14,10133000,303002,27,0,0,9807,190,31,32,,41040,Weapon +15,10134000,303002,47,0,0,21585,204,34,35,,167040,Weapon +18,10132001,303002,21,0,0,5190,154,40,41,,32040,Weapon +19,10133001,303002,61,0,0,28050,220,43,44,,216180,Weapon +20,10134001,303002,73,0,0,34302,236,46,47,,495900,Weapon +21,10140000,303003,250,0,0,40000,299,101400001,101400002,,1404000,Weapon +22,10141000,303003,120,0,0,20000,255,101410001,101410002,,1532100,Weapon +23,10142000,303003,120,0,0,24000,265,101420001,101420002,,1532100,Weapon +24,10143000,303003,180,0,0,28000,277,101430001,101430002,,1532100,Weapon +25,10144000,303003,180,0,0,32000,290,101440001,101440002,,1532100,Weapon 26,10150000,303004,360,0,0,3000,330,101500001,101500002,,500000,Weapon 27,10151000,303004,360,0,0,3000,305,101510001,101510002,,500000,Weapon 28,10152000,303004,360,0,0,3000,305,101520001,101520002,101520003,500000,Weapon 29,10153000,303004,360,0,0,3000,330,101530001,101530002,,500000,Weapon 30,10154000,303004,360,0,0,3000,330,101540001,101540002,101540003,500000,Weapon -31,10140001,303003,85,0,0,60375,999,388,389,390,1533000,Weapon -32,10141001,303003,85,0,0,62115,999,61,62,63,1648200,Weapon -33,10142001,303003,86,0,0,63915,999,64,65,66,1664100,Weapon -34,10143001,303003,86,0,0,65775,999,67,68,69,1664100,Weapon -35,10144001,303003,87,0,0,67695,999,70,71,72,1686900,Weapon -36,10150001,303004,117,0,0,156975,999,394,395,396,5619000,Weapon -37,10151001,303004,118,0,0,160815,999,85,86,87,5823300,Weapon -38,10152001,303004,119,0,0,164715,999,88,89,90,5876100,Weapon -39,10153001,303004,121,0,0,168675,999,91,92,93,5974800,Weapon -40,10154001,303004,122,0,0,172695,999,94,95,96,6020700,Weapon -41,10155000,303004,125,0,0,180915,999,397,398,399,6003000,Weapon -42,10210000,303100,2,0,0,5,6,400,401,402,1,Armor -43,10211000,303100,2,0,0,5,13,97,98,99,2,Armor -44,10212000,303100,3,0,0,23,24,100,101,102,3,Armor -45,10213000,303100,10,0,0,210,59,103,104,105,23,Armor -46,10214000,303100,14,0,0,1076,108,106,107,108,742,Armor -47,10220000,303101,5,0,0,70,35,403,404,405,5,Armor -48,10221000,303101,5,0,0,79,37,109,110,111,8,Armor -49,10222000,303101,7,0,0,120,45,112,113,114,11,Armor -50,10223000,303101,16,0,0,1341,123,115,116,117,928,Armor -51,10224000,303101,26,0,0,8361,182,118,119,120,23920,Armor -52,10230000,303102,9,0,0,310,75,406,407,408,300,Armor -53,10231000,303102,10,0,0,348,81,121,122,123,348,Armor -54,10232000,303102,11,0,0,432,93,124,125,126,387,Armor -55,10233000,303102,40,0,0,18426,201,127,128,129,140400,Armor -56,10234000,303102,52,0,0,23991,208,130,131,132,182520,Armor -57,10230001,303102,20,0,0,1824,146,409,410,411,9600,Armor -58,10231001,303102,22,0,0,5463,158,133,134,135,33000,Armor -59,10232001,303102,23,0,0,6189,166,136,137,138,35040,Armor -60,10233001,303102,67,0,0,31056,228,139,140,141,455400,Armor -61,10234001,303102,76,0,0,36195,246,142,143,144,889200,Armor -62,10240000,303103,250,0,0,40000,294,102400001,102400002,102400003,1166700,Armor -63,10241000,303103,120,0,0,20000,261,102410001,102410002,102410003,1173660,Armor -64,10242000,303103,120,0,0,24000,270,102420001,102420002,102420003,1188720,Armor -65,10243000,303103,180,0,0,28000,280,102430001,102430002,102430003,1345500,Armor -66,10244000,303103,180,0,0,32000,287,102440001,102440002,102440003,1345500,Armor +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,8361,182,118,119,,23920,Armor +55,10233000,303102,40,0,0,18426,201,127,128,,140400,Armor +56,10234000,303102,52,0,0,23991,208,130,131,,182520,Armor +57,10230001,303102,20,0,0,1824,146,409,410,,9600,Armor +58,10231001,303102,22,0,0,5463,158,133,134,,33000,Armor +59,10232001,303102,23,0,0,6189,166,136,137,,35040,Armor +60,10233001,303102,67,0,0,31056,228,139,140,,455400,Armor +62,10240000,303103,250,0,0,40000,294,102400001,102400002,,1166700,Armor +63,10241000,303103,120,0,0,20000,261,102410001,102410002,,1173660,Armor +64,10242000,303103,120,0,0,24000,270,102420001,102420002,,1188720,Armor +65,10243000,303103,180,0,0,28000,280,102430001,102430002,,1345500,Armor +66,10244000,303103,180,0,0,32000,287,102440001,102440002,,1345500,Armor 67,10250001,303104,360,0,0,3000,335,102500011,102500012,,500000,Armor 68,10251001,303104,360,0,0,3000,315,102510011,102510012,,500000,Armor 69,10252001,303104,360,0,0,3000,315,102520011,102520012,102520013,1000000,Armor 70,10253001,303104,360,0,0,3000,335,102530011,102530012,,1000000,Armor 71,10254001,303104,360,0,0,3000,335,102540011,102540012,102540013,1000000,Armor -72,10240001,303103,82,0,0,52575,999,415,416,417,1303800,Armor -73,10241001,303103,82,0,0,54015,999,157,158,159,1414500,Armor -74,10242001,303103,83,0,0,55515,999,160,161,162,1433100,Armor -75,10243001,303103,83,0,0,57075,999,163,164,165,1433100,Armor -76,10244001,303103,84,0,0,58695,999,166,167,168,1449000,Armor -77,10250000,303104,88,0,0,69675,999,418,419,420,4039200,Armor -78,10251000,303104,88,0,0,71715,999,169,170,171,4158000,Armor -79,10252000,303104,89,0,0,73815,999,172,173,174,4206600,Armor -80,10253000,303104,90,0,0,75975,999,175,176,177,4252500,Armor -81,10254000,303104,90,0,0,78195,999,178,179,180,4441500,Armor -82,10255000,303104,123,0,0,176775,999,424,425,426,5646600,Armor -83,10310000,303200,2,0,0,5,9,427,428,429,1,Belt -84,10311000,303200,2,0,0,5,20,193,194,195,2,Belt -85,10312000,303200,4,0,0,30,25,196,197,198,5,Belt -86,10313000,303200,12,0,0,274,69,199,200,201,26,Belt -87,10314000,303200,18,0,0,1560,134,202,203,204,954,Belt -88,10320000,303201,6,0,0,99,41,430,431,432,12,Belt -89,10321000,303201,6,0,0,109,43,205,206,207,15,Belt -90,10322000,303201,9,0,0,181,55,208,209,210,22,Belt -91,10323000,303201,22,0,0,5796,162,211,212,213,2992,Belt -92,10324000,303201,45,0,0,20472,203,214,215,216,122220,Belt -93,10330000,303202,10,0,0,389,87,433,434,435,330,Belt -94,10331000,303202,11,0,0,410,90,217,218,219,387,Belt -95,10332000,303202,14,0,0,1119,111,220,221,222,4872,Belt -96,10333000,303202,58,0,0,26637,216,223,224,225,203580,Belt -97,10334000,303202,150,0,0,30000,251,226,227,228,737100,Belt -98,10340000,303203,26,0,0,9054,186,436,437,438,49608,Belt -99,10341000,303203,28,0,0,10620,194,229,230,231,57960,Belt -100,10342000,303203,76,0,0,36015,240,232,233,234,1128600,Belt -101,10343000,303203,76,0,0,36015,240,235,236,237,1128600,Belt -102,10344000,303203,76,0,0,36015,240,238,239,240,1128600,Belt -103,10350000,303203,250,0,0,40000,296,103500001,103500002,103500003,4177800,Belt -104,10351000,303203,120,0,0,20000,260,103510001,103510002,103510003,4347000,Belt -105,10352000,303203,120,0,0,24000,269,103520001,103520002,103520003,4395600,Belt -106,10353000,303203,180,0,0,28000,278,103530001,103530002,103530003,4441500,Belt -107,10354000,303203,180,0,0,32000,287,103540001,103540002,103540003,4638900,Belt -108,10410000,303300,2,0,0,5,15,442,443,444,1,Necklace -109,10411000,303300,2,0,0,11,21,253,254,255,2,Necklace -110,10412000,303300,4,0,0,53,31,256,257,258,5,Necklace -111,10413000,303300,15,0,0,368,84,259,260,261,32,Necklace -112,10414000,303300,20,0,0,4977,150,262,263,264,1060,Necklace -113,10420000,303301,7,0,0,131,47,445,446,447,14,Necklace -114,10421000,303301,8,0,0,143,49,265,266,267,20,Necklace -115,10422000,303301,10,0,0,225,61,268,269,270,25,Necklace -116,10423000,303301,25,0,0,7728,178,271,272,273,3472,Necklace -117,10424000,303301,150,0,0,19419,202,274,275,276,116880,Necklace -118,10430000,303302,13,0,0,1005,102,448,449,450,4320,Necklace -119,10431000,303302,13,0,0,1038,105,277,278,279,4560,Necklace -120,10432000,303302,17,0,0,1409,126,280,281,282,5952,Necklace -121,10433000,303302,55,0,0,25284,212,283,284,285,195120,Necklace -122,10434000,303302,70,0,0,32649,232,286,287,288,472500,Necklace -123,10440000,303303,77,0,0,9093,249,451,452,453,729000,Necklace -124,10441000,303303,77,0,0,36375,249,289,290,291,1528200,Necklace -125,10442000,303303,77,0,0,36375,249,292,293,294,1528200,Necklace -126,10443000,303303,77,0,0,36375,249,295,296,297,1528200,Necklace -127,10444000,303303,77,0,0,36375,249,298,299,300,1528200,Necklace -128,10450000,303303,250,0,0,40000,293,104500001,104500002,104500003,4361400,Necklace -129,10451000,303303,120,0,0,20000,255,104510001,104510002,104510003,4536000,Necklace -130,10452000,303303,120,0,0,24000,264,104520001,104520002,104520003,4584600,Necklace -131,10453000,303303,180,0,0,28000,274,104530001,104530002,104530003,4630500,Necklace -132,10454000,303303,180,0,0,32000,284,104540001,104540002,104540003,4889100,Necklace -133,10510000,303400,2,0,0,5,17,457,458,459,1,Ring -134,10511000,303400,2,0,0,17,22,313,314,315,2,Ring -135,10512000,303400,5,0,0,61,33,316,317,318,5,Ring -136,10513000,303400,17,0,0,454,96,319,320,321,38,Ring -137,10514000,303400,24,0,0,6642,170,322,323,324,2544,Ring -138,10520000,303401,8,0,0,168,53,460,461,462,16,Ring -139,10521000,303401,9,0,0,195,57,325,326,327,22,Ring -140,10522000,303401,12,0,0,292,72,328,329,330,29,Ring -141,10523000,303401,28,0,0,17493,198,331,332,333,3808,Ring -142,10524000,303401,49,0,0,22758,205,334,335,336,132900,Ring -143,10530000,303402,15,0,0,1220,117,463,464,465,4980,Ring -144,10531000,303402,16,0,0,1278,120,337,338,339,5568,Ring -145,10532000,303402,19,0,0,1731,142,340,341,342,6648,Ring -146,10533000,303402,64,0,0,29523,224,343,344,345,748800,Ring -147,10534000,303402,76,0,0,36075,243,346,347,348,889200,Ring -148,10540000,303403,250,0,0,40000,298,105400001,105400002,105400003,1170000,Ring -149,10541000,303403,120,0,0,20000,258,105410001,105410002,105410003,1160400,Ring -150,10542000,303403,120,0,0,24000,268,105420001,105420002,105420003,1160760,Ring -151,10543000,303403,180,0,0,28000,275,105430001,105430002,105430003,1340700,Ring -152,10544000,303403,180,0,0,32000,285,105440001,105440002,105440003,1340700,Ring +87,10314000,303200,18,0,0,1560,134,202,203,,954,Belt +91,10323000,303201,22,0,0,5796,162,211,212,,2992,Belt +92,10324000,303201,45,0,0,20472,203,214,215,,122220,Belt +94,10331000,303202,11,0,0,410,90,217,218,,387,Belt +97,10334000,303202,150,0,0,30000,251,226,227,,737100,Belt +101,10343000,303203,76,0,0,36015,240,235,236,,1128600,Belt +103,10350000,303203,250,0,0,40000,296,103500001,103500002,,4177800,Belt +104,10351000,303203,120,0,0,20000,260,103510001,103510002,,4347000,Belt +105,10352000,303203,120,0,0,24000,269,103520001,103520002,,4395600,Belt +106,10353000,303203,180,0,0,28000,278,103530001,103530002,,4441500,Belt +107,10354000,303203,180,0,0,32000,287,103540001,103540002,,4638900,Belt +111,10413000,303300,15,0,0,368,84,259,260,,32,Necklace +116,10423000,303301,25,0,0,7728,178,271,272,,3472,Necklace +117,10424000,303301,150,0,0,19419,202,274,275,,116880,Necklace +121,10433000,303302,55,0,0,25284,212,283,284,,195120,Necklace +122,10434000,303302,70,0,0,32649,232,286,287,,472500,Necklace +123,10440000,303303,77,0,0,9093,249,451,452,,729000,Necklace +128,10450000,303303,250,0,0,40000,293,104500001,104500002,,4361400,Necklace +129,10451000,303303,120,0,0,20000,255,104510001,104510002,,4536000,Necklace +130,10452000,303303,120,0,0,24000,264,104520001,104520002,,4584600,Necklace +131,10453000,303303,180,0,0,28000,274,104530001,104530002,,4630500,Necklace +132,10454000,303303,180,0,0,32000,284,104540001,104540002,,4889100,Necklace +133,10510000,303400,2,0,0,5,17,457,458,,1,Ring +137,10514000,303400,24,0,0,6642,170,322,323,,2544,Ring +139,10521000,303401,9,0,0,195,57,325,326,,22,Ring +141,10523000,303401,28,0,0,17493,198,331,332,,3808,Ring +142,10524000,303401,49,0,0,22758,205,334,335,,132900,Ring +144,10531000,303402,16,0,0,1278,120,337,338,,5568,Ring +146,10533000,303402,64,0,0,29523,224,343,344,,748800,Ring +147,10534000,303402,76,0,0,36075,243,346,347,,889200,Ring +148,10540000,303403,250,0,0,40000,298,105400001,105400002,,1170000,Ring +149,10541000,303403,120,0,0,20000,258,105410001,105410002,,1160400,Ring +150,10542000,303403,120,0,0,24000,268,105420001,105420002,,1160760,Ring +151,10543000,303403,180,0,0,28000,275,105430001,105430002,,1340700,Ring +152,10544000,303403,180,0,0,32000,285,105440001,105440002,,1340700,Ring 153,10550000,303404,360,0,0,3000,340,105500001,105500002,,500000,Ring 154,10551000,303404,360,0,0,3000,325,105510001,105510002,,500000,Ring 155,10552000,303404,360,0,0,3000,325,105520001,105520002,105520003,1000000,Ring 156,10553000,303404,360,0,0,3000,340,105530001,105530002,,1000000,Ring 157,10554000,303404,360,0,0,3000,340,105540001,105540002,105540003,1000000,Ring -158,12001001,600101,100,0,0,10,999,120010011,120010012,120010013,0,Belt -159,12001002,600101,100,0,0,10,999,120010021,120010022,120010023,0,Necklace -160,12001003,600101,50,0,0,10,999,120010031,120010032,120010033,0,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,360,0,0,3000,330,103500011,103500012,,500000,Belt 162,10351001,303204,360,0,0,3000,310,103510011,103510012,,500000,Belt 163,10352001,303204,360,0,0,3000,310,103520011,103520012,103520013,1000000,Belt @@ -169,10 +91,11 @@ id,result_equipment_id,material_id,material_count,required_action_point,required 168,10452001,303304,360,0,0,3000,320,104520011,104520012,104520013,1000000,Necklace 169,10453001,303304,360,0,0,3000,335,104530011,104530012,,1000000,Necklace 170,10454001,303304,360,0,0,3000,335,104540011,104540012,104540013,1000000,Necklace -171 ,10620000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -172,10630000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -173,10640000,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -174,10620001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -175,10630001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -176,10640001,303304,360,0,0,3000,335,104540011,,,1000000,Necklace -177,10650001,303304,360,0,0,3000,335,104540011,,,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 +174,10620001,0,0,0,0,10000000,999,106200011,,,0,Aura +175,10630001,0,0,0,0,10000000,999,106300011,,,0,Aura +176,10640001,0,0,0,0,10000000,999,106400011,,,0,Aura +177,10650001,0,0,0,0,10000000,999,106500011,,,0,Aura +178,10650002,0,0,0,0,10000000,999,106500021,,,0,Aura \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemSetEffectSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemSetEffectSheet.csv index 207974fdc1..6f3bc9a88a 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemSetEffectSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemSetEffectSheet.csv @@ -58,4 +58,4 @@ id,count,stat_type,modify_type,modify_value 15,2,HP,Add,1 15,3,HP,Add,1 15,4,HP,Add,1 -15,5,HP,Add,1 +15,5,HP,Add,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemSheet.csv b/Lib9c/TableCSV/Item/EquipmentItemSheet.csv index db5f5ff917..496eddb988 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemSheet.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemSheet.csv @@ -1,184 +1,184 @@ id,_name,item_sub_type,grade,elemental_type,set_id,stat_type,stat_value,attack_range,spine_resource_path,exp -10100000,나뭇가지,Weapon,0,Normal,0,ATK,1,2,10100000,0 -10110000,검,Weapon,1,Normal,1,ATK,11,2,10110000,5 -10111000,롱 소드(불),Weapon,1,Fire,2,ATK,14,2,10111000,10 -10112000,롱 소드(물),Weapon,1,Water,3,ATK,17,2,10112000,10 -10113000,롱 소드(땅),Weapon,1,Land,4,ATK,55,2,10113000,10 -10114000,롱 소드(바람),Weapon,1,Wind,5,ATK,136,2,10114000,10 -10120000,검투사 검,Weapon,2,Normal,6,ATK,31,2,10120000,80 -10121000,검투사 검(불),Weapon,2,Fire,7,ATK,32,2,10121000,80 -10122000,검투사 검(물),Weapon,2,Water,8,ATK,38,2,10122000,80 -10123000,검투사 검(땅),Weapon,2,Land,9,ATK,152,2,10123000,80 -10124000,검투사 검(바람),Weapon,2,Wind,10,ATK,327,2,10124000,80 -10130000,까마귀의 검,Weapon,3,Normal,11,ATK,78,2,10130000,16020 -10131000,까마귀의 검(불),Weapon,3,Fire,12,ATK,81,2,10131000,16020 -10132000,까마귀의 검(물),Weapon,3,Water,13,ATK,92,2,10132000,16020 -10133000,까마귀의 검(땅),Weapon,3,Land,14,ATK,354,2,10133000,16020 -10134000,까마귀의 검(바람),Weapon,3,Wind,15,ATK,693,2,10134000,16020 -10130001,무거운 검,Weapon,3,Normal,11,ATK,170,2,10130001,16020 -10131001,무거운 검(불),Weapon,3,Fire,12,ATK,179,2,10131001,16020 -10132001,무거운 검(물),Weapon,3,Water,13,ATK,196,2,10132001,16020 -10133001,무거운 검(땅),Weapon,3,Land,14,ATK,908,2,10133001,16020 -10134001,무거운 검(바람),Weapon,3,Wind,15,ATK,967,2,10134001,16020 -10140000,전쟁 검,Weapon,4,Normal,11,ATK,3094,2,10140000,426000 -10141000,전쟁 검(불),Weapon,4,Fire,12,ATK,1934,2,10141000,426000 -10142000,전쟁 검(물),Weapon,4,Water,13,ATK,2224,2,10142000,426000 -10143000,전쟁 검(땅),Weapon,4,Land,14,ATK,2514,2,10143000,426000 -10144000,전쟁 검(바람),Weapon,4,Wind,15,ATK,2804,2,10144000,426000 -10150000,다인슬레이프,Weapon,5,Normal,16,ATK,6063,2,10150000,6760000 -10151000,다인슬레이프(불),Weapon,5,Fire,17,ATK,4331,2,10151000,6760000 -10152000,다인슬레이프(물),Weapon,5,Water,18,ATK,4331,2,10152000,6760000 -10153000,다인슬레이프(땅),Weapon,5,Land,19,ATK,6063,2,10153000,6760000 -10154000,다인슬레이프(바람),Weapon,5,Wind,20,ATK,6063,2,10154000,6760000 -10140001,아스가르드의 검,Weapon,5,Normal,11,ATK,765,2,10140001,6760000 -10141001,아스가르드의 검(불),Weapon,5,Fire,12,ATK,782,2,10141001,6760000 -10142001,아스가르드의 검(물),Weapon,5,Water,13,ATK,798,2,10142001,6760000 -10143001,아스가르드의 검(땅),Weapon,5,Land,14,ATK,1221,2,10143001,6760000 -10144001,아스가르드의 검(바람),Weapon,5,Wind,15,ATK,1525,2,10144001,6760000 -10150001,수르트의 검,Weapon,5,Normal,16,ATK,2157,2,10150001,6760000 -10151001,수르트의 검(불),Weapon,5,Fire,17,ATK,2190,2,10151001,6760000 -10152001,수르트의 검(물),Weapon,5,Water,18,ATK,2223,2,10152001,6760000 -10153001,수르트의 검(땅),Weapon,5,Land,19,ATK,3390,2,10153001,6760000 -10154001,수르트의 검(바람),Weapon,5,Wind,20,ATK,4219,2,10154001,6760000 -10155000,발키리의 검,Weapon,5,Normal,15,ATK,2902,2,10155000,6760000 -10200000,누더기 옷,Armor,0,Normal,0,HP,30,2,Character/Player/10200000,0 -10210000,옷,Armor,1,Normal,1,HP,180,2,Character/Player/10210000,19 -10211000,천 옷(불),Armor,1,Fire,2,HP,222,2,Character/Player/10211000,19 -10212000,천 옷(물),Armor,1,Water,3,HP,288,2,Character/Player/10212000,19 -10213000,천 옷(땅),Armor,1,Land,4,HP,915,2,Character/Player/10213000,19 -10214000,천 옷(바람),Armor,1,Wind,5,HP,2182,2,Character/Player/10214000,19 -10220000,가죽 옷,Armor,2,Normal,6,HP,531,2,Character/Player/10220000,103 -10221000,가죽 옷(불),Armor,2,Fire,7,HP,549,2,Character/Player/10221000,103 -10222000,가죽 옷(물),Armor,2,Water,8,HP,621,2,Character/Player/10222000,103 -10223000,가죽 옷(땅),Armor,2,Land,9,HP,2431,2,Character/Player/10223000,103 -10224000,가죽 옷(바람),Armor,2,Wind,10,HP,5109,2,Character/Player/10224000,103 -10230000,검은 까마귀의 갑옷,Armor,3,Normal,11,HP,1337,2,Character/Player/10230000,9600 -10231000,검은 까마귀의 갑옷(불),Armor,3,Fire,12,HP,1418,2,Character/Player/10231000,9600 -10232000,검은 까마귀의 갑옷(물),Armor,3,Water,13,HP,1580,2,Character/Player/10232000,9600 -10233000,검은 까마귀의 갑옷(땅),Armor,3,Land,14,HP,8370,2,Character/Player/10233000,9600 -10234000,검은 까마귀의 갑옷(바람),Armor,3,Wind,15,HP,10571,2,Character/Player/10234000,9600 -10230001,헤르메스의 옷,Armor,3,Normal,11,HP,2811,2,Character/Player/10230001,9600 -10231001,헤르메스의 옷(불),Armor,3,Fire,12,HP,3009,2,Character/Player/10231001,9600 -10232001,헤르메스의 옷(물),Armor,3,Water,13,HP,3141,2,Character/Player/10232001,9600 -10233001,헤르메스의 옷(땅),Armor,3,Land,14,HP,11482,2,Character/Player/10233001,9600 -10234001,헤르메스의 옷(바람),Armor,3,Wind,15,HP,12302,2,Character/Player/10234001,9600 -10240000,전쟁 갑옷,Armor,4,Normal,11,HP,34446,2,Character/Player/10240000,426000 -10241000,전쟁 갑옷(불),Armor,4,Fire,12,HP,24604,2,Character/Player/10241000,426000 -10242000,전쟁 갑옷(물),Armor,4,Water,13,HP,27064,2,Character/Player/10242000,426000 -10243000,전쟁 갑옷(땅),Armor,4,Land,14,HP,29525,2,Character/Player/10243000,426000 -10244000,전쟁 갑옷(바람),Armor,4,Wind,15,HP,31985,2,Character/Player/10244000,426000 -10250001,고대의 갑옷,Armor,5,Normal,11,HP,67513,2,Character/Player/10250001,6760000 -10251001,고대의 갑옷(불),Armor,5,Fire,12,HP,48224,2,Character/Player/10251001,6760000 -10252001,고대의 갑옷(물),Armor,5,Water,13,HP,48224,2,Character/Player/10252001,6760000 -10253001,고대의 갑옷(땅),Armor,5,Land,14,HP,67513,2,Character/Player/10253001,6760000 -10254001,고대의 갑옷(바람),Armor,5,Wind,15,HP,67513,2,Character/Player/10254001,6760000 -10250000,전설의 갑옷,Armor,5,Normal,11,HP,15550,2,Character/Player/10250000,6760000 -10251000,전설의 갑옷(불),Armor,5,Fire,12,HP,15848,2,Character/Player/10251000,6760000 -10252000,전설의 갑옷(물),Armor,5,Water,13,HP,16146,2,Character/Player/10252000,6760000 -10253000,전설의 갑옷(땅),Armor,5,Land,14,HP,24665,2,Character/Player/10253000,6760000 -10254000,전설의 갑옷(바람),Armor,5,Wind,15,HP,30823,2,Character/Player/10254000,6760000 -10240001,아스가르드의 갑옷,Armor,5,Normal,11,HP,10358,2,Character/Player/10240001,6760000 -10241001,아스가르드의 갑옷(불),Armor,5,Fire,12,HP,10571,2,Character/Player/10241001,6760000 -10242001,아스가르드의 갑옷(물),Armor,5,Water,13,HP,10783,2,Character/Player/10242001,6760000 -10243001,아스가르드의 갑옷(땅),Armor,5,Land,14,HP,16494,2,Character/Player/10243001,6760000 -10244001,아스가르드의 갑옷(바람),Armor,5,Wind,15,HP,20647,2,Character/Player/10244001,6760000 -10255000,천상의 고양이,Armor,5,Normal,11,HP,42856,2,Character/Player/10235000,6760000 -10310000,허리끈,Belt,1,Normal,1,SPD,46,2,10310000,954 -10311000,허리끈(불),Belt,1,Fire,2,SPD,62,2,10311000,954 -10312000,허리끈(물),Belt,1,Water,3,SPD,69,2,10312000,954 -10313000,허리끈(땅),Belt,1,Land,4,SPD,239,2,10313000,954 -10314000,허리끈(바람),Belt,1,Wind,5,SPD,610,2,10314000,954 -10320000,가죽 벨트,Belt,2,Normal,6,SPD,137,2,10320000,1496 -10321000,가죽 벨트(불),Belt,2,Fire,7,SPD,141,2,10321000,1496 -10322000,가죽 벨트(물),Belt,2,Water,8,SPD,166,2,10322000,1496 -10323000,가죽 벨트(땅),Belt,2,Land,9,SPD,718,2,10323000,1496 -10324000,가죽 벨트(바람),Belt,2,Wind,10,SPD,1314,2,10324000,1496 -10330000,견고한 벨트,Belt,3,Normal,11,SPD,350,2,10330000,3864 -10331000,견고한 벨트(불),Belt,3,Fire,12,SPD,359,2,10331000,3864 -10332000,견고한 벨트(물),Belt,3,Water,13,SPD,425,2,10332000,3864 -10333000,견고한 벨트(땅),Belt,3,Land,14,SPD,1701,2,10333000,3864 -10334000,견고한 벨트(바람),Belt,3,Wind,15,SPD,2883,2,10334000,3864 -10340000,전쟁 벨트,Belt,4,Normal,11,SPD,1215,2,10340000,96600 -10341000,전쟁 벨트(불),Belt,4,Fire,12,SPD,1262,2,10341000,96600 -10342000,전쟁 벨트(물),Belt,4,Water,13,SPD,2292,2,10342000,96600 -10343000,전쟁 벨트(땅),Belt,4,Land,14,SPD,2292,2,10343000,96600 -10344000,전쟁 벨트(바람),Belt,4,Wind,15,SPD,2292,2,10344000,96600 -10350000,전설의 벨트,Belt,4,Normal,11,SPD,7334,2,10350000,96600 -10351000,전설의 벨트(불),Belt,4,Fire,12,SPD,4584,2,10351000,96600 -10352000,전설의 벨트(물),Belt,4,Water,13,SPD,5272,2,10352000,96600 -10353000,전설의 벨트(땅),Belt,4,Land,14,SPD,5959,2,10353000,96600 -10354000,전설의 벨트(바람),Belt,4,Wind,15,SPD,6647,2,10354000,96600 -10350001,고대의 벨트,Belt,5,Normal,15,SPD,14373,2,10350000,6760000 -10351001,고대의 벨트(불),Belt,5,Fire,15,SPD,10267,2,10351000,6760000 -10352001,고대의 벨트(물),Belt,5,Water,15,SPD,10267,2,10352000,6760000 -10353001,고대의 벨트(땅),Belt,5,Land,15,SPD,14373,2,10353000,6760000 -10354001,고대의 벨트(바람),Belt,5,Wind,15,SPD,14373,2,10354000,6760000 -10410000,얇은 목걸이,Necklace,1,Normal,1,HIT,70,0,10410000,315 -10411000,얇은 목걸이(불),Necklace,1,Fire,2,HIT,81,0,10411000,315 -10412000,얇은 목걸이(물),Necklace,1,Water,3,HIT,99,0,10412000,315 -10413000,얇은 목걸이(땅),Necklace,1,Land,4,HIT,357,0,10413000,315 -10414000,얇은 목걸이(바람),Necklace,1,Wind,5,HIT,863,0,10414000,315 -10420000,수호의 목걸이,Necklace,2,Normal,6,HIT,192,0,10420000,1736 -10421000,수호의 목걸이(불),Necklace,2,Fire,7,HIT,197,0,10421000,1736 -10422000,수호의 목걸이(물),Necklace,2,Water,8,HIT,230,0,10422000,1736 -10423000,수호의 목걸이(땅),Necklace,2,Land,9,HIT,1002,0,10423000,1736 -10424000,수호의 목걸이(바람),Necklace,2,Wind,10,HIT,1682,0,10424000,1736 -10430000,마력의 목걸이,Necklace,3,Normal,11,HIT,510,0,10430000,65040 -10431000,마력의 목걸이(불),Necklace,3,Fire,12,HIT,522,0,10431000,65040 -10432000,마력의 목걸이(물),Necklace,3,Water,13,HIT,608,0,10432000,65040 -10433000,마력의 목걸이(땅),Necklace,3,Land,14,HIT,2151,0,10433000,65040 -10434000,마력의 목걸이(바람),Necklace,3,Wind,15,HIT,2333,0,10434000,65040 -10440000,전사의 목걸이,Necklace,4,Normal,11,HIT,2031,0,10440000,243000 -10441000,전사의 목걸이(불),Necklace,4,Fire,12,HIT,3047,0,10441000,243000 -10442000,전사의 목걸이(물),Necklace,4,Water,13,HIT,3047,0,10442000,243000 -10443000,전사의 목걸이(땅),Necklace,4,Land,14,HIT,3047,0,10443000,243000 -10444000,전사의 목걸이(바람),Necklace,4,Wind,15,HIT,3047,0,10444000,243000 -10450000,전설의 목걸이,Necklace,4,Normal,11,HIT,7466,0,10450000,243000 -10451000,전설의 목걸이(불),Necklace,4,Fire,12,HIT,4666,0,10451000,243000 -10452000,전설의 목걸이(물),Necklace,4,Water,13,HIT,5366,0,10452000,243000 -10453000,전설의 목걸이(땅),Necklace,4,Land,14,HIT,6066,0,10453000,243000 -10454000,전설의 목걸이(바람),Necklace,4,Wind,15,HIT,6766,0,10454000,243000 -10450001,고대의 목걸이,Necklace,5,Normal,15,HIT,15363,0,10450000,6760000 -10451001,고대의 목걸이(불),Necklace,5,Fire,15,HIT,10452,0,10451000,6760000 -10452001,고대의 목걸이(물),Necklace,5,Water,15,HIT,10452,0,10452000,6760000 -10453001,고대의 목걸이(땅),Necklace,5,Land,15,HIT,15363,0,10453000,6760000 -10454001,고대의 목걸이(바람),Necklace,5,Wind,15,HIT,15363,0,10454000,6760000 -10510000,얇은 반지,Ring,1,Normal,1,DEF,8,0,10510000,10 -10511000,얇은 반지(불),Ring,1,Fire,2,DEF,9,0,10511000,10 -10512000,얇은 반지(물),Ring,1,Water,3,DEF,11,0,10512000,10 -10513000,얇은 반지(땅),Ring,1,Land,4,DEF,44,0,10513000,10 -10514000,얇은 반지(바람),Ring,1,Wind,5,DEF,107,0,10514000,10 -10520000,수호의 반지,Ring,2,Normal,6,DEF,23,0,10520000,216 -10521000,수호의 반지(불),Ring,2,Fire,7,DEF,24,0,10521000,216 -10522000,수호의 반지(물),Ring,2,Water,8,DEF,29,0,10522000,216 -10523000,수호의 반지(땅),Ring,2,Land,9,DEF,122,0,10523000,216 -10524000,수호의 반지(바람),Ring,2,Wind,10,DEF,189,0,10524000,216 -10530000,마나 반지,Ring,3,Normal,11,DEF,63,0,10530000,5568 -10531000,마나 반지(불),Ring,3,Fire,12,DEF,65,0,10531000,5568 -10532000,마나 반지(물),Ring,3,Water,13,DEF,74,0,10532000,5568 -10533000,마나 반지(땅),Ring,3,Land,14,DEF,251,0,10533000,5568 -10534000,마나 반지(바람),Ring,3,Wind,15,DEF,270,0,10534000,5568 -10540000,전사의 반지,Ring,4,Normal,11,DEF,864,0,10540000,426000 -10541000,전사의 반지(불),Ring,4,Fire,12,DEF,540,0,10541000,426000 -10542000,전사의 반지(물),Ring,4,Water,13,DEF,621,0,10542000,426000 -10543000,전사의 반지(땅),Ring,4,Land,14,DEF,702,0,10543000,426000 -10544000,전사의 반지(바람),Ring,4,Wind,15,DEF,783,0,10544000,426000 -10550000,고대의 반지,Ring,5,Normal,11,DEF,1946,0,10550000,6760000 -10551000,고대의 반지(불),Ring,5,Fire,12,DEF,1209,0,10551000,6760000 -10552000,고대의 반지(물),Ring,5,Water,13,DEF,1209,0,10552000,6760000 -10553000,고대의 반지(땅),Ring,5,Land,14,DEF,1946,0,10553000,6760000 -10554000,고대의 반지(바람),Ring,5,Wind,15,DEF,1946,0,10554000,6760000 -10620000,AuraSummon1,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10620001,AuraSummon2,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10630000,AuraSummon3,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10630001,AuraSummon4,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10640000,AuraSummon5,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10640001,AuraSummon6,Ring,5,Wind,15,DEF,1946,0,10554000,0 -10650001,AuraSummon7,Ring,5,Wind,15,DEF,1946,0,10554000,0 -11320000,블루 사파이어 벨트,Belt,2,Normal,6,SPD,176,2,11320000,1496 -11420000,블루 사파이어 목걸이,Necklace,2,Normal,6,HIT,227,0,11420000,1736 -11520000,블루 사파이어 반지,Ring,2,Normal,6,DEF,50,0,11520000,216 -12001001,Special Crystal Belt,Belt,2,Normal,0,ATK,1,0,12001001,1496 -12001002,Special Crystal Necklace,Necklace,3,Normal,1,ATK,1,0,12001002,65040 -12001003,Special Crystal Ring,Ring,4,Normal,2,ATK,1,0,12001003,426000 -13001000,Aura,Aura,0,Normal,0,ATK,1,0,10100000,0 +10100000,Wooden Club,Weapon,0,Normal,0,ATK,1,2,10100000,10 +10110000,Long Sword,Weapon,1,Normal,1,ATK,11,2,10110000,1 +10111000,Long Sword,Weapon,1,Fire,2,ATK,14,2,10111000,1 +10112000,Long Sword,Weapon,1,Water,3,ATK,17,2,10112000,1 +10113000,Long Sword,Weapon,1,Land,4,ATK,55,2,10113000,6 +10114000,Long Sword,Weapon,1,Wind,5,ATK,136,2,10114000,7 +10120000,Gladiator Sword,Weapon,2,Normal,6,ATK,31,2,10120000,14 +10121000,Gladiator Sword,Weapon,2,Fire,7,ATK,32,2,10121000,18 +10122000,Gladiator Sword,Weapon,2,Water,8,ATK,38,2,10122000,117 +10123000,Gladiator Sword,Weapon,2,Land,9,ATK,152,2,10123000,139 +10124000,Gladiator Sword,Weapon,2,Wind,10,ATK,327,2,10124000,150 +10130000,Black Crow Sword,Weapon,3,Normal,11,ATK,78,2,10130000,90 +10131000,Black Crow Sword,Weapon,3,Fire,12,ATK,81,2,10131000,150 +10132000,Black Crow Sword,Weapon,3,Water,13,ATK,92,2,10132000,1191 +10133000,Black Crow Sword,Weapon,3,Land,14,ATK,354,2,10133000,2074 +10134000,Black Crow Sword,Weapon,3,Wind,15,ATK,693,2,10134000,2288 +10130001,Heavy Sword,Weapon,3,Normal,11,ATK,170,2,10130001,1611 +10131001,Heavy Sword,Weapon,3,Fire,12,ATK,179,2,10131001,2931 +10132001,Heavy Sword,Weapon,3,Water,13,ATK,196,2,10132001,3000 +10133001,Heavy Sword,Weapon,3,Land,14,ATK,908,2,10133001,3000 +10134001,Heavy Sword,Weapon,3,Wind,15,ATK,967,2,10134001,3000 +10140000,War Sword,Weapon,4,Normal,11,ATK,3094,2,10140000,60000 +10141000,War Sword,Weapon,4,Fire,12,ATK,1934,2,10141000,60000 +10142000,War Sword,Weapon,4,Water,13,ATK,2224,2,10142000,80000 +10143000,War Sword,Weapon,4,Land,14,ATK,2514,2,10143000,80000 +10144000,War Sword,Weapon,4,Wind,15,ATK,2804,2,10144000,120000 +10150000,Dainsleif,Weapon,5,Normal,16,ATK,6063,2,10150000,2000000 +10151000,Dainsleif,Weapon,5,Fire,17,ATK,4331,2,10151000,1500000 +10152000,Dainsleif,Weapon,5,Water,18,ATK,4331,2,10152000,1500000 +10153000,Dainsleif,Weapon,5,Land,19,ATK,6063,2,10153000,2000000 +10154000,Dainsleif,Weapon,5,Wind,20,ATK,6063,2,10154000,2000000 +10140001,Asgardian Sword,Weapon,5,Normal,11,ATK,765,2,10140001,1 +10141001,Asgardian Sword,Weapon,5,Fire,12,ATK,782,2,10141001,1 +10142001,Asgardian Sword,Weapon,5,Water,13,ATK,798,2,10142001,1 +10143001,Asgardian Sword,Weapon,5,Land,14,ATK,1221,2,10143001,1 +10144001,Asgardian Sword,Weapon,5,Wind,15,ATK,1525,2,10144001,1 +10150001,Surt's Sword,Weapon,5,Normal,16,ATK,2157,2,10150001,1 +10151001,Surt's Sword,Weapon,5,Fire,17,ATK,2190,2,10151001,1 +10152001,Surt's Sword,Weapon,5,Water,18,ATK,2223,2,10152001,1 +10153001,Surt's Sword,Weapon,5,Land,19,ATK,3390,2,10153001,1 +10154001,Surt's Sword,Weapon,5,Wind,20,ATK,4219,2,10154001,1 +10155000,Valkyrie’s Sword,Weapon,5,Normal,15,ATK,2902,2,10155000,1 +10200000,Ragged Clothes,Armor,0,Normal,0,HP,30,2,Character/Player/10200000,10 +10210000,Casual Clothes,Armor,1,Normal,1,HP,180,2,Character/Player/10210000,1 +10211000,Casual Clothes,Armor,1,Fire,2,HP,222,2,Character/Player/10211000,1 +10212000,Casual Clothes,Armor,1,Water,3,HP,288,2,Character/Player/10212000,2 +10213000,Casual Clothes,Armor,1,Land,4,HP,915,2,Character/Player/10213000,4 +10214000,Casual Clothes,Armor,1,Wind,5,HP,2182,2,Character/Player/10214000,5 +10220000,Leather Clothes,Armor,2,Normal,6,HP,531,2,Character/Player/10220000,10 +10221000,Leather Clothes,Armor,2,Fire,7,HP,549,2,Character/Player/10221000,120 +10222000,Leather Clothes,Armor,2,Water,8,HP,621,2,Character/Player/10222000,150 +10223000,Leather Clothes,Armor,2,Land,9,HP,2431,2,Character/Player/10223000,150 +10224000,Leather Clothes,Armor,2,Wind,10,HP,5109,2,Character/Player/10224000,150 +10230000,Black Crow Armor,Armor,3,Normal,11,HP,1337,2,Character/Player/10230000,130 +10231000,Black Crow Armor,Armor,3,Fire,12,HP,1418,2,Character/Player/10231000,132 +10232000,Black Crow Armor,Armor,3,Water,13,HP,1580,2,Character/Player/10232000,1300 +10233000,Black Crow Armor,Armor,3,Land,14,HP,8370,2,Character/Player/10233000,2000 +10234000,Black Crow Armor,Armor,3,Wind,15,HP,10571,2,Character/Player/10234000,2000 +10230001,Hermes' Clothes,Armor,3,Normal,11,HP,2811,2,Character/Player/10230001,1700 +10231001,Hermes' Clothes,Armor,3,Fire,12,HP,3009,2,Character/Player/10231001,3000 +10232001,Hermes' Clothes,Armor,3,Water,13,HP,3141,2,Character/Player/10232001,3000 +10233001,Hermes' Clothes,Armor,3,Land,14,HP,11482,2,Character/Player/10233001,3000 +10234001,Hermes' Clothes,Armor,3,Wind,15,HP,12302,2,Character/Player/10234001,3000 +10240000,War Armor,Armor,4,Normal,11,HP,34446,2,Character/Player/10240000,60000 +10241000,War Armor,Armor,4,Fire,12,HP,24604,2,Character/Player/10241000,60000 +10242000,War Armor,Armor,4,Water,13,HP,27064,2,Character/Player/10242000,80000 +10243000,War Armor,Armor,4,Land,14,HP,29525,2,Character/Player/10243000,80000 +10244000,War Armor,Armor,4,Wind,15,HP,31985,2,Character/Player/10244000,120000 +10250001,Ancient Armor,Armor,5,Normal,11,HP,67513,2,Character/Player/10250001,2000000 +10251001,Ancient Armor,Armor,5,Fire,12,HP,48224,2,Character/Player/10251001,1500000 +10252001,Ancient Armor,Armor,5,Water,13,HP,48224,2,Character/Player/10252001,1500000 +10253001,Ancient Armor,Armor,5,Land,14,HP,67513,2,Character/Player/10253001,2000000 +10254001,Ancient Armor,Armor,5,Wind,15,HP,67513,2,Character/Player/10254001,2000000 +10250000,Legendary Armor,Armor,5,Normal,11,HP,15550,2,Character/Player/10250000,1 +10251000,Legendary Armor,Armor,5,Fire,12,HP,15848,2,Character/Player/10251000,1 +10252000,Legendary Armor,Armor,5,Water,13,HP,16146,2,Character/Player/10252000,1 +10253000,Legendary Armor,Armor,5,Land,14,HP,24665,2,Character/Player/10253000,1 +10254000,Legendary Armor,Armor,5,Wind,15,HP,30823,2,Character/Player/10254000,1 +10240001,Asgardian Armor,Armor,5,Normal,11,HP,10358,2,Character/Player/10240001,1 +10241001,Asgardian Armor,Armor,5,Fire,12,HP,10571,2,Character/Player/10241001,1 +10242001,Asgardian Armor,Armor,5,Water,13,HP,10783,2,Character/Player/10242001,1 +10243001,Asgardian Armor,Armor,5,Land,14,HP,16494,2,Character/Player/10243001,1 +10244001,Asgardian Armor,Armor,5,Wind,15,HP,20647,2,Character/Player/10244001,1 +10255000,Heavenly Cat,Armor,5,Normal,11,HP,42856,2,Character/Player/10235000,1 +10310000,Basic Belt,Belt,1,Normal,1,SPD,46,2,10310000,1 +10311000,Basic Belt,Belt,1,Fire,2,SPD,62,2,10311000,2 +10312000,Basic Belt,Belt,1,Water,3,SPD,69,2,10312000,3 +10313000,Basic Belt,Belt,1,Land,4,SPD,239,2,10313000,8 +10314000,Basic Belt,Belt,1,Wind,5,SPD,610,2,10314000,8 +10320000,Leather Belt,Belt,2,Normal,6,SPD,137,2,10320000,16 +10321000,Leather Belt,Belt,2,Fire,7,SPD,141,2,10321000,20 +10322000,Leather Belt,Belt,2,Water,8,SPD,166,2,10322000,150 +10323000,Leather Belt,Belt,2,Land,9,SPD,718,2,10323000,150 +10324000,Leather Belt,Belt,2,Wind,10,SPD,1314,2,10324000,150 +10330000,Solid Belt,Belt,3,Normal,11,SPD,350,2,10330000,72 +10331000,Solid Belt,Belt,3,Fire,12,SPD,359,2,10331000,112 +10332000,Solid Belt,Belt,3,Water,13,SPD,425,2,10332000,3000 +10333000,Solid Belt,Belt,3,Land,14,SPD,1701,2,10333000,3000 +10334000,Solid Belt,Belt,3,Wind,15,SPD,2883,2,10334000,2000 +10340000,War Belt,Belt,4,Normal,11,SPD,1215,2,10340000,8000 +10341000,War Belt,Belt,4,Fire,12,SPD,1262,2,10341000,50000 +10342000,War Belt,Belt,4,Water,13,SPD,2292,2,10342000,50000 +10343000,War Belt,Belt,4,Land,14,SPD,2292,2,10343000,50000 +10344000,War Belt,Belt,4,Wind,15,SPD,2292,2,10344000,27500 +10350000,Legendary Belt,Belt,4,Normal,11,SPD,7334,2,10350000,60000 +10351000,Legendary Belt,Belt,4,Fire,12,SPD,4584,2,10351000,60000 +10352000,Legendary Belt,Belt,4,Water,13,SPD,5272,2,10352000,80000 +10353000,Legendary Belt,Belt,4,Land,14,SPD,5959,2,10353000,80000 +10354000,Legendary Belt,Belt,4,Wind,15,SPD,6647,2,10354000,100000 +10410000,Thin Necklace,Necklace,1,Normal,1,HIT,70,0,10410000,1 +10411000,Thin Necklace,Necklace,1,Fire,2,HIT,81,0,10411000,2 +10412000,Thin Necklace,Necklace,1,Water,3,HIT,99,0,10412000,3 +10413000,Thin Necklace,Necklace,1,Land,4,HIT,357,0,10413000,5 +10414000,Thin Necklace,Necklace,1,Wind,5,HIT,863,0,10414000,7 +10420000,Guardian Necklace,Necklace,2,Normal,6,HIT,192,0,10420000,25 +10421000,Guardian Necklace,Necklace,2,Fire,7,HIT,197,0,10421000,32 +10422000,Guardian Necklace,Necklace,2,Water,8,HIT,230,0,10422000,150 +10423000,Guardian Necklace,Necklace,2,Land,9,HIT,1002,0,10423000,150 +10424000,Guardian Necklace,Necklace,2,Wind,10,HIT,1682,0,10424000,150 +10430000,Mana Necklace,Necklace,3,Normal,11,HIT,510,0,10430000,150 +10431000,Mana Necklace,Necklace,3,Fire,12,HIT,522,0,10431000,250 +10432000,Mana Necklace,Necklace,3,Water,13,HIT,608,0,10432000,3000 +10433000,Mana Necklace,Necklace,3,Land,14,HIT,2151,0,10433000,3000 +10434000,Mana Necklace,Necklace,3,Wind,15,HIT,2333,0,10434000,3000 +10440000,Warrior's Necklace,Necklace,4,Normal,11,HIT,2031,0,10440000,30000 +10441000,Warrior's Necklace,Necklace,4,Fire,12,HIT,3047,0,10441000,60000 +10442000,Warrior's Necklace,Necklace,4,Water,13,HIT,3047,0,10442000,60000 +10443000,Warrior's Necklace,Necklace,4,Land,14,HIT,3047,0,10443000,60000 +10444000,Warrior's Necklace,Necklace,4,Wind,15,HIT,3047,0,10444000,60000 +10450000,Legendary Necklace,Necklace,4,Normal,11,HIT,7466,0,10450000,50000 +10451000,Legendary Necklace,Necklace,4,Fire,12,HIT,4666,0,10451000,50000 +10452000,Legendary Necklace,Necklace,4,Water,13,HIT,5366,0,10452000,80000 +10453000,Legendary Necklace,Necklace,4,Land,14,HIT,6066,0,10453000,80000 +10454000,Legendary Necklace,Necklace,4,Wind,15,HIT,6766,0,10454000,100000 +10510000,Thin Ring,Ring,1,Normal,1,DEF,8,0,10510000,1 +10511000,Thin Ring,Ring,1,Fire,2,DEF,9,0,10511000,2 +10512000,Thin Ring,Ring,1,Water,3,DEF,11,0,10512000,3 +10513000,Thin Ring,Ring,1,Land,4,DEF,44,0,10513000,5 +10514000,Thin Ring,Ring,1,Wind,5,DEF,107,0,10514000,7 +10520000,Guardian Ring,Ring,2,Normal,6,DEF,23,0,10520000,25 +10521000,Guardian Ring,Ring,2,Fire,7,DEF,24,0,10521000,32 +10522000,Guardian Ring,Ring,2,Water,8,DEF,29,0,10522000,150 +10523000,Guardian Ring,Ring,2,Land,9,DEF,122,0,10523000,150 +10524000,Guardian Ring,Ring,2,Wind,10,DEF,189,0,10524000,150 +10530000,Mana Ring,Ring,3,Normal,11,DEF,63,0,10530000,50 +10531000,Mana Ring,Ring,3,Fire,12,DEF,65,0,10531000,100 +10532000,Mana Ring,Ring,3,Water,13,DEF,74,0,10532000,1000 +10533000,Mana Ring,Ring,3,Land,14,DEF,251,0,10533000,3000 +10534000,Mana Ring,Ring,3,Wind,15,DEF,270,0,10534000,3000 +10540000,Warrior's Ring,Ring,4,Normal,11,DEF,864,0,10540000,50000 +10541000,Warrior's Ring,Ring,4,Fire,12,DEF,540,0,10541000,50000 +10542000,Warrior's Ring,Ring,4,Water,13,DEF,621,0,10542000,80000 +10543000,Warrior's Ring,Ring,4,Land,14,DEF,702,0,10543000,80000 +10544000,Warrior's Ring,Ring,4,Wind,15,DEF,783,0,10544000,100000 +10550000,Ancient Ring,Ring,5,Normal,11,DEF,1946,0,10550000,2000000 +10551000,Ancient Ring,Ring,5,Fire,12,DEF,1209,0,10551000,1500000 +10552000,Ancient Ring,Ring,5,Water,13,DEF,1209,0,10552000,1500000 +10553000,Ancient Ring,Ring,5,Land,14,DEF,1946,0,10553000,2000000 +10554000,Ancient Ring,Ring,5,Wind,15,DEF,1946,0,10554000,2000000 +11320000,Blue Sapphire Belt,Belt,2,Normal,6,SPD,176,2,11320000,1 +11420000,Blue Sapphire Necklace,Necklace,2,Normal,6,HIT,227,0,11420000,1 +11520000,Blue Sapphire Ring,Ring,2,Normal,6,DEF,50,0,11520000,1 +12001001,Special Crystal Belt,Belt,2,Normal,0,ATK,1,0,12001001,1 +12001002,Special Crystal Necklace,Necklace,3,Normal,1,ATK,1,0,12001002,1 +12001003,Special Crystal Ring,Ring,4,Normal,2,ATK,1,0,12001003,1 +10350001,Ancient Belt,Belt,5,Normal,15,SPD,14373,2,10350001,2000000 +10351001,Ancient Belt,Belt,5,Fire,15,SPD,10267,2,10351001,1500000 +10352001,Ancient Belt,Belt,5,Water,15,SPD,10267,2,10352001,1500000 +10353001,Ancient Belt,Belt,5,Land,15,SPD,14373,2,10353001,2000000 +10354001,Ancient Belt,Belt,5,Wind,15,SPD,14373,2,10354001,2000000 +10450001,Ancient Necklace,Necklace,5,Normal,15,HIT,15363,0,10450001,2000000 +10451001,Ancient Necklace,Necklace,5,Fire,15,HIT,10452,0,10451001,1500000 +10452001,Ancient Necklace,Necklace,5,Water,15,HIT,10452,0,10452001,1500000 +10453001,Ancient Necklace,Necklace,5,Land,15,HIT,15363,0,10453001,2000000 +10454001,Ancient Necklace,Necklace,5,Wind,15,HIT,15363,0,10454001,2000000 +10610000,Nimble Aura,Aura,1,Normal,0,HIT,10,0,10610000,1 +10620000,Nimble Aura,Aura,2,Normal,0,HIT,10,0,10610000,20 +10630000,Nimble Aura,Aura,3,Normal,0,HIT,10,0,10610000,400 +10620001,Beast Aura,Aura,2,Normal,0,ATK,10,0,10620001,20 +10630001,Beast Aura,Aura,3,Normal,0,ATK,10,0,10620001,400 +10640001,Beast Aura,Aura,4,Normal,0,ATK,10,0,10620001,4000 +10650001,Beast Aura,Aura,5,Normal,0,ATK,10,0,10620001,40000 +10650002,Lord's Beast Aura,Aura,5,Normal,0,ATK,10,0,10620001,40000 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv b/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv index c7a493e039..8797fa3706 100644 --- a/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv +++ b/Lib9c/TableCSV/Item/EquipmentItemSubRecipeSheetV2.csv @@ -11,10 +11,10 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 7,0,0,0,306011,6,306010,3,306009,3,23,10000,0,24,3400,15,25,1000,46,,,,FALSE,1 8,0,0,77,306010,16,306009,11,306011,11,26,10000,0,27,7900,34,28,3400,69,29,1500,104,FALSE,2 9,0,450,0,301000,10,,,,,30,10000,0,31,8000,15,32,6000,31,33,900,46,TRUE,2 -10,0,0,0,306050,12,306052,6,306040,6,34,10000,0,35,3000,47,36,1100,143,,,,FALSE,1 +10,0,0,0,306050,12,306052,6,306040,6,34,10000,0,35,10000,47,39,10000,0,36,10000,143,FALSE,1 11,0,0,238,306050,36,306051,24,306042,6,37,10000,0,38,6000,107,39,4200,214,40,1600,321,FALSE,2 12,0,450,0,301000,10,,,,,41,10000,0,42,8000,47,43,6000,95,44,900,143,TRUE,2 -376,0,0,0,,,,,,,1376,10000,0,1377,2800,3,1378,1200,11,,,,FALSE,1 +376,0,0,0,,,,,,,1376,10000,0,1377,10000,3,1381,10000,0,1378,10000,11,FALSE,1 377,0,0,18,306023,5,306002,4,306024,3,1379,10000,0,1380,8400,8,1381,3200,16,1382,1500,24,FALSE,2 378,0,450,0,301000,10,,,,,1383,10000,0,1384,8000,3,1385,6000,7,1386,900,11,TRUE,2 13,0,0,0,306023,3,306025,2,306024,2,45,10000,0,46,3000,4,47,1100,13,,,,FALSE,1 @@ -320,7 +320,7 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 460,0,0,0,,,,,,,1684,10000,0,1685,6800,16,1686,500,50,,,,FALSE,1 461,0,0,84,306023,11,306002,8,306024,6,1687,10000,0,1688,8900,37,1689,7500,75,1690,600,113,FALSE,2 462,0,300,0,301000,10,,,,,1691,10000,0,1692,8000,16,1693,6000,33,1694,500,50,TRUE,2 -325,0,0,0,306024,6,306023,3,306025,3,1189,10000,0,1190,8500,19,1191,400,58,,,,FALSE,1 +325,0,0,0,306024,6,306023,3,306025,3,1189,10000,0,1190,10000,19,1194,10000,0,1191,10000,58,FALSE,1 326,0,0,97,306025,18,306023,12,306024,12,1192,10000,0,1193,9600,43,1194,8300,87,1195,500,131,FALSE,2 327,0,300,0,301000,10,,,,,1196,10000,0,1197,8000,19,1198,6000,39,1199,500,58,TRUE,2 328,0,0,0,306002,8,306001,4,306000,4,1200,10000,0,1201,6800,29,1202,500,87,,,,FALSE,1 @@ -335,7 +335,7 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 463,0,0,0,306040,8,,,,,1695,10000,0,1696,6800,122,1697,500,366,,,,FALSE,1 464,0,0,610,306004,45,306050,30,306042,8,1698,10000,0,1699,8900,274,1700,7500,549,1701,600,823,FALSE,2 465,0,300,0,301000,10,,,,,1702,10000,0,1703,8000,122,1704,6000,244,1705,500,366,TRUE,2 -337,0,0,0,306028,16,306026,8,306040,8,1233,10000,0,1234,8500,127,1235,400,383,,,,FALSE,1 +337,0,0,0,306028,16,306026,8,306040,8,1233,10000,0,1234,10000,127,1238,10000,0,1235,10000,383,FALSE,1 338,0,0,639,306027,31,306040,16,306041,8,1236,10000,0,1237,9600,287,1238,8300,575,1239,500,862,FALSE,2 339,0,300,0,301000,10,,,,,1240,10000,0,1241,8000,127,1242,6000,255,1243,500,383,TRUE,2 340,0,0,0,306004,19,306003,10,306040,10,1244,10000,0,1245,6800,173,1246,500,519,,,,FALSE,1 @@ -438,59 +438,67 @@ ID,required_action_point,required_gold,required_block_index,material_id,material 101500002,0,0,0,306080,960,306070,200,,,1015000021,10000,0,1015000022,6000,6000,1015000023,1100,20000,1015000024,500,100800,FALSE,1 101510001,0,0,1,306075,720,306070,60,306071,40,1015100011,10000,0,1015100012,6000,3000,1015100013,1100,10000,1015100014,500,50400,FALSE,1 101510002,0,0,1,306075,720,306070,60,306071,40,1015100021,10000,0,1015100022,6000,3000,1015100023,1100,10000,1015100024,500,50400,FALSE,1 -101520001,0,0,1,306075,720,306070,60,306072,40,1015200011,10000,0,1015200012,6000,3000,1015200013,1100,10000,1015200014,500,50400,FALSE,1 -101520002,0,0,1,306075,720,306070,60,306072,40,1015200021,10000,0,1015200022,6000,3000,1015200023,1100,10000,1015200024,500,50400,FALSE,1 -101520003,0,0,1,306075,720,306070,60,306072,40,1015200031,10000,0,1015200032,6000,3000,1015200033,1100,10000,1015200034,500,50400,FALSE,1 +101520001,0,0,1,306075,720,306070,60,306074,40,1015200011,10000,0,1015200012,6000,3000,1015200013,1100,10000,1015200014,500,50400,FALSE,1 +101520002,0,0,1,306075,720,306070,60,306074,40,1015200021,10000,0,1015200022,6000,3000,1015200023,1100,10000,1015200024,500,50400,FALSE,1 +101520003,0,0,1,306075,720,306070,60,306074,40,1015200031,10000,0,1015200032,6000,3000,1015200033,1100,10000,1015200034,500,50400,FALSE,1 101530001,0,0,1,306080,960,306070,120,306073,60,1015300011,10000,0,1015300012,6000,6000,1015300013,1100,20000,1015300014,500,100800,FALSE,1 101530002,0,0,1,306080,960,306070,120,306073,60,1015300021,10000,0,1015300022,6000,6000,1015300023,1100,20000,1015300024,500,100800,FALSE,1 -101540001,0,0,1,306080,960,306070,120,306074,60,1015400011,10000,0,1015400012,6000,6000,1015400013,1100,20000,1015400014,500,100800,FALSE,1 -101540002,0,0,1,306080,960,306070,120,306074,60,1015400021,10000,0,1015400022,6000,6000,1015400023,1100,20000,1015400024,500,100800,FALSE,1 -101540003,0,0,1,306080,960,306070,120,306074,60,1015400031,10000,0,1015400032,6000,6000,1015400033,1100,20000,1015400034,500,100800,FALSE,1 +101540001,0,0,1,306080,960,306070,120,306072,60,1015400011,10000,0,1015400012,6000,6000,1015400013,1100,20000,1015400014,500,100800,FALSE,1 +101540002,0,0,1,306080,960,306070,120,306072,60,1015400021,10000,0,1015400022,6000,6000,1015400023,1100,20000,1015400024,500,100800,FALSE,1 +101540003,0,0,1,306080,960,306070,120,306072,60,1015400031,10000,0,1015400032,6000,6000,1015400033,1100,20000,1015400034,500,100800,FALSE,1 102500011,0,0,1,306082,960,306070,200,,,1025000111,10000,0,1025000112,6000,6000,1025000113,1100,20000,1025000114,500,100800,FALSE,1 102500012,0,0,1,306082,960,306070,200,,,1025000121,10000,0,1025000122,6000,6000,1025000123,1100,20000,1025000124,500,100800,FALSE,1 -102510011,0,0,1,306076,720,306070,60,306071,40,1025100111,10000,0,1025100112,6000,3000,1025100113,1100,10000,1025100114,500,50400,FALSE,1 -102510012,0,0,1,306076,720,306070,60,306071,40,1025100121,10000,0,1025100122,6000,3000,1025100123,1100,10000,1025100124,500,50400,FALSE,1 -102520011,0,0,1,306076,720,306070,60,306072,40,1025200111,10000,0,1025200112,6000,3000,1025200113,1100,10000,1025200114,500,50400,FALSE,1 -102520012,0,0,1,306076,720,306070,60,306072,40,1025200121,10000,0,1025200122,6000,3000,1025200123,1100,10000,1025200124,500,50400,FALSE,1 -102520013,0,0,1,306076,720,306070,60,306072,40,1025200131,10000,0,1025200132,6000,3000,1025200133,1100,10000,1025200134,500,50400,FALSE,1 +102510011,0,0,1,306077,720,306070,60,306071,40,1025100111,10000,0,1025100112,6000,3000,1025100113,1100,10000,1025100114,500,50400,FALSE,1 +102510012,0,0,1,306077,720,306070,60,306071,40,1025100121,10000,0,1025100122,6000,3000,1025100123,1100,10000,1025100124,500,50400,FALSE,1 +102520011,0,0,1,306077,720,306070,60,306074,40,1025200111,10000,0,1025200112,6000,3000,1025200113,1100,10000,1025200114,500,50400,FALSE,1 +102520012,0,0,1,306077,720,306070,60,306074,40,1025200121,10000,0,1025200122,6000,3000,1025200123,1100,10000,1025200124,500,50400,FALSE,1 +102520013,0,0,1,306077,720,306070,60,306074,40,1025200131,10000,0,1025200132,6000,3000,1025200133,1100,10000,1025200134,500,50400,FALSE,1 102530011,0,0,1,306082,960,306070,120,306073,60,1025300111,10000,0,1025300112,6000,6000,1025300113,1100,20000,1025300114,500,100800,FALSE,1 102530012,0,0,1,306082,960,306070,120,306073,60,1025300121,10000,0,1025300122,6000,6000,1025300123,1100,20000,1025300124,500,100800,FALSE,1 -102540011,0,0,1,306082,960,306070,120,306074,60,1025400111,10000,0,1025400112,6000,6000,1025400113,1100,20000,1025400114,500,100800,FALSE,1 -102540012,0,0,1,306082,960,306070,120,306074,60,1025400121,10000,0,1025400122,6000,6000,1025400123,1100,20000,1025400124,500,100800,FALSE,1 -102540013,0,0,1,306082,960,306070,120,306074,60,1025400131,10000,0,1025400132,6000,6000,1025400133,1100,20000,1025400134,500,100800,FALSE,1 +102540011,0,0,1,306082,960,306070,120,306072,60,1025400111,10000,0,1025400112,6000,6000,1025400113,1100,20000,1025400114,500,100800,FALSE,1 +102540012,0,0,1,306082,960,306070,120,306072,60,1025400121,10000,0,1025400122,6000,6000,1025400123,1100,20000,1025400124,500,100800,FALSE,1 +102540013,0,0,1,306082,960,306070,120,306072,60,1025400131,10000,0,1025400132,6000,6000,1025400133,1100,20000,1025400134,500,100800,FALSE,1 103500011,0,0,1,306081,960,306070,200,,,1035000111,10000,0,1035000112,6000,6000,1035000113,1100,20000,1035000114,500,100800,FALSE,1 103500012,0,0,1,306081,960,306070,200,,,1035000121,10000,0,1035000122,6000,6000,1035000123,1100,20000,1035000124,500,100800,FALSE,1 -103510011,0,0,1,306077,720,306070,60,306071,40,1035100111,10000,0,1035100112,6000,3000,1035100113,1100,10000,1035100114,500,50400,FALSE,1 -103510012,0,0,1,306077,720,306070,60,306071,40,1035100121,10000,0,1035100122,6000,3000,1035100123,1100,10000,1035100124,500,50400,FALSE,1 -103520011,0,0,1,306077,720,306070,60,306072,40,1035200111,10000,0,1035200112,6000,3000,1035200113,1100,10000,1035200114,500,50400,FALSE,1 -103520012,0,0,1,306077,720,306070,60,306072,40,1035200121,10000,0,1035200122,6000,3000,1035200123,1100,10000,1035200124,500,50400,FALSE,1 -103520013,0,0,1,306077,720,306070,60,306072,40,1035200131,10000,0,1035200132,6000,3000,1035200133,1100,10000,1035200134,500,50400,FALSE,1 +103510011,0,0,1,306076,720,306070,60,306071,40,1035100111,10000,0,1035100112,6000,3000,1035100113,1100,10000,1035100114,500,50400,FALSE,1 +103510012,0,0,1,306076,720,306070,60,306071,40,1035100121,10000,0,1035100122,6000,3000,1035100123,1100,10000,1035100124,500,50400,FALSE,1 +103520011,0,0,1,306076,720,306070,60,306074,40,1035200111,10000,0,1035200112,6000,3000,1035200113,1100,10000,1035200114,500,50400,FALSE,1 +103520012,0,0,1,306076,720,306070,60,306074,40,1035200121,10000,0,1035200122,6000,3000,1035200123,1100,10000,1035200124,500,50400,FALSE,1 +103520013,0,0,1,306076,720,306070,60,306074,40,1035200131,10000,0,1035200132,6000,3000,1035200133,1100,10000,1035200134,500,50400,FALSE,1 103530011,0,0,1,306081,960,306070,120,306073,60,1035300111,10000,0,1035300112,6000,6000,1035300113,1100,20000,1035300114,500,100800,FALSE,1 103530012,0,0,1,306081,960,306070,120,306073,60,1035300121,10000,0,1035300122,6000,6000,1035300123,1100,20000,1035300124,500,100800,FALSE,1 -103540011,0,0,1,306081,960,306070,120,306074,60,1035400111,10000,0,1035400112,6000,6000,1035400113,1100,20000,1035400114,500,100800,FALSE,1 -103540012,0,0,1,306081,960,306070,120,306074,60,1035400121,10000,0,1035400122,6000,6000,1035400123,1100,20000,1035400124,500,100800,FALSE,1 -103540013,0,0,1,306081,960,306070,120,306074,60,1035400131,10000,0,1035400132,6000,6000,1035400133,1100,20000,1035400134,500,100800,FALSE,1 +103540011,0,0,1,306081,960,306070,120,306072,60,1035400111,10000,0,1035400112,6000,6000,1035400113,1100,20000,1035400114,500,100800,FALSE,1 +103540012,0,0,1,306081,960,306070,120,306072,60,1035400121,10000,0,1035400122,6000,6000,1035400123,1100,20000,1035400124,500,100800,FALSE,1 +103540013,0,0,1,306081,960,306070,120,306072,60,1035400131,10000,0,1035400132,6000,6000,1035400133,1100,20000,1035400134,500,100800,FALSE,1 104500011,0,0,1,306083,960,306070,200,,,1045000111,10000,0,1045000112,6000,6000,1045000113,1100,20000,1045000114,500,100800,FALSE,1 104500012,0,0,1,306083,960,306070,200,,,1045000121,10000,0,1045000122,6000,6000,1045000123,1100,20000,1045000124,500,100800,FALSE,1 104510011,0,0,1,306078,720,306070,60,306071,40,1045100111,10000,0,1045100112,6000,3000,1045100113,1100,10000,1045100114,500,50400,FALSE,1 104510012,0,0,1,306078,720,306070,60,306071,40,1045100121,10000,0,1045100122,6000,3000,1045100123,1100,10000,1045100124,500,50400,FALSE,1 -104520011,0,0,1,306078,720,306070,60,306072,40,1045200111,10000,0,1045200112,6000,3000,1045200113,1100,10000,1045200114,500,50400,FALSE,1 -104520012,0,0,1,306078,720,306070,60,306072,40,1045200121,10000,0,1045200122,6000,3000,1045200123,1100,10000,1045200124,500,50400,FALSE,1 -104520013,0,0,1,306078,720,306070,60,306072,40,1045200131,10000,0,1045200132,6000,3000,1045200133,1100,10000,1045200134,500,50400,FALSE,1 +104520011,0,0,1,306078,720,306070,60,306074,40,1045200111,10000,0,1045200112,6000,3000,1045200113,1100,10000,1045200114,500,50400,FALSE,1 +104520012,0,0,1,306078,720,306070,60,306074,40,1045200121,10000,0,1045200122,6000,3000,1045200123,1100,10000,1045200124,500,50400,FALSE,1 +104520013,0,0,1,306078,720,306070,60,306074,40,1045200131,10000,0,1045200132,6000,3000,1045200133,1100,10000,1045200134,500,50400,FALSE,1 104530011,0,0,1,306083,960,306070,120,306073,60,1045300111,10000,0,1045300112,6000,6000,1045300113,1100,20000,1045300114,500,100800,FALSE,1 104530012,0,0,1,306083,960,306070,120,306073,60,1045300121,10000,0,1045300122,6000,6000,1045300123,1100,20000,1045300124,500,100800,FALSE,1 -104540011,0,0,1,306083,960,306070,120,306074,60,1045400111,10000,0,1045400112,6000,6000,1045400113,1100,20000,1045400114,500,100800,FALSE,1 -104540012,0,0,1,306083,960,306070,120,306074,60,1045400121,10000,0,1045400122,6000,6000,1045400123,1100,20000,1045400124,500,100800,FALSE,1 -104540013,0,0,1,306083,960,306070,120,306074,60,1045400131,10000,0,1045400132,6000,6000,1045400133,1100,20000,1045400134,500,100800,FALSE,1 +104540011,0,0,1,306083,960,306070,120,306072,60,1045400111,10000,0,1045400112,6000,6000,1045400113,1100,20000,1045400114,500,100800,FALSE,1 +104540012,0,0,1,306083,960,306070,120,306072,60,1045400121,10000,0,1045400122,6000,6000,1045400123,1100,20000,1045400124,500,100800,FALSE,1 +104540013,0,0,1,306083,960,306070,120,306072,60,1045400131,10000,0,1045400132,6000,6000,1045400133,1100,20000,1045400134,500,100800,FALSE,1 105500001,0,0,1,306084,960,306070,200,,,1055000011,10000,0,1055000012,6000,6000,1055000013,1100,20000,1055000014,500,100800,FALSE,1 105500002,0,0,1,306084,960,306070,200,,,1055000021,10000,0,1055000022,6000,6000,1055000023,1100,20000,1055000024,500,100800,FALSE,1 105510001,0,0,1,306079,720,306070,60,306071,40,1055100011,10000,0,1055100012,6000,3000,1055100013,1100,10000,1055100014,500,50400,FALSE,1 105510002,0,0,1,306079,720,306070,60,306071,40,1055100021,10000,0,1055100022,6000,3000,1055100023,1100,10000,1055100024,500,50400,FALSE,1 -105520001,0,0,1,306079,720,306070,60,306072,40,1055200011,10000,0,1055200012,6000,3000,1055200013,1100,10000,1055200014,500,50400,FALSE,1 -105520002,0,0,1,306079,720,306070,60,306072,40,1055200021,10000,0,1055200022,6000,3000,1055200023,1100,10000,1055200024,500,50400,FALSE,1 -105520003,0,0,1,306079,720,306070,60,306072,40,1055200031,10000,0,1055200032,6000,3000,1055200033,1100,10000,1055200034,500,50400,FALSE,1 +105520001,0,0,1,306079,720,306070,60,306074,40,1055200011,10000,0,1055200012,6000,3000,1055200013,1100,10000,1055200014,500,50400,FALSE,1 +105520002,0,0,1,306079,720,306070,60,306074,40,1055200021,10000,0,1055200022,6000,3000,1055200023,1100,10000,1055200024,500,50400,FALSE,1 +105520003,0,0,1,306079,720,306070,60,306074,40,1055200031,10000,0,1055200032,6000,3000,1055200033,1100,10000,1055200034,500,50400,FALSE,1 105530001,0,0,1,306084,960,306070,120,306073,60,1055300011,10000,0,1055300012,6000,6000,1055300013,1100,20000,1055300014,500,100800,FALSE,1 105530002,0,0,1,306084,960,306070,120,306073,60,1055300021,10000,0,1055300022,6000,6000,1055300023,1100,20000,1055300024,500,100800,FALSE,1 -105540001,0,0,1,306084,960,306070,120,306074,60,1055400011,10000,0,1055400012,6000,6000,1055400013,1100,20000,1055400014,500,100800,FALSE,1 -105540002,0,0,1,306084,960,306070,120,306074,60,1055400021,10000,0,1055400022,6000,6000,1055400023,1100,20000,1055400024,500,100800,FALSE,1 -105540003,0,0,1,306084,960,306070,120,306074,60,1055400031,10000,0,1055400032,6000,6000,1055400033,1100,20000,1055400034,500,100800,FALSE,1 \ No newline at end of file +105540001,0,0,1,306084,960,306070,120,306072,60,1055400011,10000,0,1055400012,6000,6000,1055400013,1100,20000,1055400014,500,100800,FALSE,1 +105540002,0,0,1,306084,960,306070,120,306072,60,1055400021,10000,0,1055400022,6000,6000,1055400023,1100,20000,1055400024,500,100800,FALSE,1 +105540003,0,0,1,306084,960,306070,120,306072,60,1055400031,10000,0,1055400032,6000,6000,1055400033,1100,20000,1055400034,500,100800,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 +106200011,0,0,1,,,,,,,1062000111,10000,0,1062000112,10000,0,1062000113,10000,0,1062000114,10000,0,FALSE,1 +106300011,0,0,1,,,,,,,1063000111,10000,0,1063000112,10000,0,1063000113,10000,0,1063000114,10000,0,FALSE,1 +106400011,0,0,1,,,,,,,1064000111,10000,0,1064000112,10000,0,1064000113,10000,0,1064000114,10000,0,FALSE,1 +106500011,0,0,1,,,,,,,1065000111,10000,0,1065000112,10000,0,1065000113,10000,0,1065000114,10000,0,FALSE,1 +106500021,0,0,1,,,,,,,1065000121,10000,0,1065000122,10000,0,1065000123,10000,0,1065000124,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 670d40f110..f9e1c88a5c 100644 --- a/Lib9c/TableCSV/Item/ItemRequirementSheet.csv +++ b/Lib9c/TableCSV/Item/ItemRequirementSheet.csv @@ -1,35 +1,35 @@ item_id,level,mimislevel -10100000,1,999 -10110000,1,999 -10111000,1,180 -10112000,1,999 -10113000,40,999 -10114000,90,999 -10120000,20,999 -10121000,20,999 -10122000,20,999 -10123000,100,999 -10124000,160,999 -10130000,50,999 -10131000,50,999 -10132000,50,999 -10133000,180,999 -10134000,190,999 -10130001,120,999 -10131001,120,999 -10132001,120,999 -10133001,210,999 -10134001,220,999 -10140000,290,290 -10141000,240,240 -10142000,250,250 -10143000,260,260 -10144000,270,270 -10150000,325,325 -10151000,295,295 -10152000,295,295 -10153000,325,325 -10154000,325,325 +10100000,1,1 +10110000,1,1 +10111000,1,1 +10112000,1,1 +10113000,20,20 +10114000,70,70 +10120000,10,10 +10121000,10,10 +10122000,10,10 +10123000,70,70 +10124000,130,130 +10130000,30,30 +10131000,30,30 +10132000,30,30 +10133000,150,150 +10134000,160,160 +10130001,90,90 +10131001,90,90 +10132001,90,90 +10133001,180,180 +10134001,190,190 +10140000,260,260 +10141000,210,210 +10142000,220,220 +10143000,230,230 +10144000,240,240 +10150000,295,295 +10151000,265,265 +10152000,265,265 +10153000,295,295 +10154000,295,295 10140001,999,999 10141001,999,999 10142001,999,999 @@ -41,37 +41,37 @@ item_id,level,mimislevel 10153001,999,999 10154001,999,999 10155000,999,999 -10200000,1,999 -10210000,1,999 -10211000,1,180 -10212000,1,999 -10213000,50,999 -10214000,100,999 -10220000,30,999 -10221000,30,999 -10222000,30,999 -10223000,110,999 -10224000,170,999 -10230000,60,999 -10231000,60,999 -10232000,60,999 -10233000,190,999 -10234000,200,999 -10230001,130,999 -10231001,130,999 -10232001,130,999 -10233001,220,999 -10234001,230,999 -10240000,285,285 -10241000,245,245 -10242000,255,255 -10243000,265,265 -10244000,273,273 -10250001,330,330 -10251001,310,310 -10252001,310,310 -10253001,330,330 -10254001,330,330 +10200000,1,1 +10210000,1,1 +10211000,1,1 +10212000,1,1 +10213000,30,30 +10214000,70,70 +10220000,20,20 +10221000,20,20 +10222000,20,20 +10223000,80,80 +10224000,140,140 +10230000,40,40 +10231000,40,40 +10232000,40,40 +10233000,160,160 +10234000,170,170 +10230001,100,100 +10231001,100,100 +10232001,100,100 +10233001,190,190 +10234001,200,200 +10240000,255,255 +10241000,215,215 +10242000,225,225 +10243000,235,235 +10244000,243,243 +10250001,300,300 +10251001,280,280 +10252001,280,280 +10253001,300,300 +10254001,300,300 10240001,999,999 10241001,999,999 10242001,999,999 @@ -83,196 +83,210 @@ item_id,level,mimislevel 10253000,999,999 10254000,999,999 10255000,999,999 -10310000,1,999 -10311000,1,180 -10312000,1,999 -10313000,60,999 -10314000,120,999 -10320000,30,999 -10321000,30,999 -10322000,30,999 -10323000,150,999 -10324000,190,999 -10330000,80,999 -10331000,80,999 -10332000,80,999 -10333000,200,999 -10334000,240,240 -10340000,170,999 -10341000,180,999 -10342000,230,999 -10343000,230,999 -10344000,230,999 -10350000,286,286 -10351000,245,245 -10352000,254,254 -10353000,263,263 -10354000,272,272 -10410000,10,999 -10411000,10,180 -10412000,10,999 -10413000,70,999 -10414000,140,999 -10420000,40,999 -10421000,40,999 -10422000,40,999 -10423000,160,999 -10424000,190,999 -10430000,90,999 -10431000,90,999 -10432000,90,999 -10433000,200,999 -10434000,220,999 -10440000,230,999 -10441000,230,999 -10442000,230,999 -10443000,230,999 -10444000,230,999 -10450000,283,283 -10451000,240,240 -10452000,249,249 -10453000,259,259 -10454000,269,269 -10450001,330,330 -10451001,315,315 -10452001,315,315 -10453001,330,330 -10454001,330,330 -10510000,10,999 -10511000,10,180 -10512000,10,999 -10513000,80,999 -10514000,160,999 -10520000,40,999 -10521000,40,999 -10522000,40,999 -10523000,180,999 -10524000,190,999 -10530000,110,999 -10531000,110,999 -10532000,110,999 -10533000,210,999 -10534000,230,999 -10540000,288,288 -10541000,242,242 -10542000,252,252 -10543000,260,260 -10544000,270,270 -11320000,1,999 -11420000,1,999 -11520000,1,999 -12001001,1,999 -12001002,1,999 -12001003,1,999 -13001000,1,999 -10350001,325,325 -10351001,305,305 -10352001,305,305 -10353001,325,325 -10354001,325,325 -10550000,335,335 -10551000,320,320 -10552000,320,320 -10553000,335,335 -10554000,335,335 -40100000,1,999 -40100001,1,999 -40100002,1,999 -40100003,1,999 -40100004,1,999 -40100005,1,999 -40100006,1,999 -40100007,1,999 -40100008,1,999 -40100009,1,999 -40100010,1,999 -40100011,1,999 -40200001,1,999 -40200002,1,999 -40200003,1,999 -40200004,1,999 -40200005,1,999 -40200006,1,999 -40200007,1,999 -40300001,1,999 -40300002,1,999 -40300003,1,999 -40300004,1,999 -40300005,1,999 -40300006,1,999 -40300007,1,999 -40300008,1,999 -40300009,1,999 -40300010,1,999 -40400001,1,999 -40400002,1,999 -40400003,1,999 -40400004,1,999 -40400005,1,999 -40400006,1,999 -40500001,1,999 -40500002,1,999 -40500003,1,999 -40500004,1,999 -40500005,1,999 -40500006,1,999 -40500007,1,999 -40500008,1,999 -40500009,1,999 -40500010,1,999 -49900001,1,999 -49900002,1,999 -49900003,1,999 -49900004,1,999 -49900005,1,999 -49900006,1,999 -49900007,1,999 -49900008,1,999 -49900009,1,999 -49900010,1,999 -105000,1,999 -105001,1,999 -105002,1,999 -200000,1,999 -201000,1,999 -201001,80,999 -201002,1,999 -201003,50,999 -201004,80,999 -201005,1,999 -201006,50,999 -201007,80,999 -201008,110,999 -201009,150,999 -201010,190,999 -201011,110,999 -201012,150,999 -201013,190,999 -201014,200,999 -201015,220,999 -201016,250,999 -201017,200,999 -201018,220,999 -201019,250,999 -201020,200,999 -201021,250,999 -201022,260,260 -201023,280,280 -201024,300,300 -201025,260,260 -201026,280,280 -201027,300,300 -201028,310,310 -201029,330,330 -201030,350,350 -201031,310,310 -201032,330,330 -201033,350,350 -900101,1,999 -900102,1,999 -900103,1,999 -500000,1,999 -400000,1,999 -900104,1,999 -900105,1,999 -900106,1,999 +10310000,1,1 +10311000,1,1 +10312000,1,1 +10313000,40,40 +10314000,90,90 +10320000,20,20 +10321000,20,20 +10322000,20,20 +10323000,120,120 +10324000,160,160 +10330000,60,60 +10331000,60,60 +10332000,60,60 +10333000,170,170 +10334000,210,210 +10340000,140,140 +10341000,150,150 +10342000,200,200 +10343000,200,200 +10344000,200,200 +10350000,256,256 +10351000,215,215 +10352000,224,224 +10353000,233,233 +10354000,242,242 +10410000,1,1 +10411000,1,1 +10412000,1,1 +10413000,50,50 +10414000,110,110 +10420000,20,20 +10421000,20,20 +10422000,20,20 +10423000,130,130 +10424000,160,160 +10430000,70,70 +10431000,70,70 +10432000,70,70 +10433000,170,170 +10434000,190,190 +10440000,200,200 +10441000,200,200 +10442000,200,200 +10443000,200,200 +10444000,200,200 +10450000,253,253 +10451000,210,210 +10452000,219,219 +10453000,229,229 +10454000,239,239 +10450001,300,300 +10451001,285,285 +10452001,285,285 +10453001,300,300 +10454001,300,300 +10510000,1,1 +10511000,1,1 +10512000,1,1 +10513000,60,60 +10514000,130,130 +10520000,20,20 +10521000,20,20 +10522000,20,20 +10523000,150,150 +10524000,160,160 +10530000,80,80 +10531000,80,80 +10532000,80,80 +10533000,180,180 +10534000,200,200 +10540000,258,258 +10541000,212,212 +10542000,222,222 +10543000,230,230 +10544000,240,240 +11320000,1,1 +11420000,1,1 +11520000,1,1 +12001001,1,1 +12001002,1,1 +12001003,1,1 +10350001,295,295 +10351001,275,275 +10352001,275,275 +10353001,295,295 +10354001,295,295 +10550000,305,305 +10551000,290,290 +10552000,290,290 +10553000,305,305 +10554000,305,305 +10610000,1,1 +10620000,1,1 +10630000,1,1 +10620001,1,1 +10630001,1,1 +10640001,1,1 +10650001,1,1 +10650002,1,1 +40100000,1,1 +40100001,1,1 +40100002,1,1 +40100003,1,1 +40100004,1,1 +40100005,1,1 +40100006,1,1 +40100007,1,1 +40100008,1,1 +40100009,1,1 +40100010,1,1 +40100011,1,1 +40100013,1,1 +40100014,1,1 +40100015,10,10 +40100016,1,1 +40100017,1,1 +40100019,1,1 +40200001,1,1 +40200002,1,1 +40200003,1,1 +40200004,1,1 +40200005,1,1 +40200006,1,1 +40200007,1,1 +40300001,1,1 +40300002,1,1 +40300003,1,1 +40300004,1,1 +40300005,1,1 +40300006,1,1 +40300007,1,1 +40300008,1,1 +40300009,1,1 +40300010,1,1 +40400001,1,1 +40400002,1,1 +40400003,1,1 +40400004,1,1 +40400005,1,1 +40400006,1,1 +40500001,1,1 +40500002,1,1 +40500003,1,1 +40500004,1,1 +40500005,1,1 +40500006,1,1 +40500007,1,1 +40500008,1,1 +40500009,1,1 +40500010,1,1 +49900001,1,1 +49900002,1,1 +49900003,1,1 +49900004,1,1 +49900005,1,1 +49900006,1,1 +49900007,1,1 +49900008,1,1 +49900009,1,1 +49900010,1,1 +49900011,1,1 +105000,1,1 +105001,1,1 +105002,1,1 +200000,1,1 +201000,1,1 +201001,60,60 +201002,1,1 +201003,30,30 +201004,60,60 +201005,1,1 +201006,30,30 +201007,60,60 +201008,80,80 +201009,120,120 +201010,160,160 +201011,80,80 +201012,120,120 +201013,160,160 +201014,170,170 +201015,190,190 +201016,220,220 +201017,170,170 +201018,190,190 +201019,220,220 +201020,170,170 +201021,220,220 +201022,230,230 +201023,250,250 +201024,270,270 +201025,230,230 +201026,250,250 +201027,270,270 +201028,280,280 +201029,300,300 +201030,320,320 +201031,280,280 +201032,300,300 +201033,320,320 +900101,1,1 +900102,1,1 +900103,1,1 +500000,1,1 +400000,1,1 +900104,1,1 +900105,1,1 +900106,1,1 \ No newline at end of file diff --git a/Lib9c/TableCSV/Item/MaterialItemSheet.csv b/Lib9c/TableCSV/Item/MaterialItemSheet.csv index cccaac0aaa..767b933975 100644 --- a/Lib9c/TableCSV/Item/MaterialItemSheet.csv +++ b/Lib9c/TableCSV/Item/MaterialItemSheet.csv @@ -38,7 +38,7 @@ id,_name,item_sub_type,grade,elemental_type 800107,Candy_Cane,FoodMaterial,2,Normal 800108,Aurora_Powder,FoodMaterial,3,Normal 800109,Fluffy_Marshmallow,FoodMaterial,4,Normal -800201,황금 고기,FoodMaterial,4,Normal +800201,Silver Dust,FoodMaterial,4,Normal 303000,녹슨 칼,EquipmentMaterial,1,Normal 303001,버려진 검,EquipmentMaterial,2,Normal 303002,단단한 검,EquipmentMaterial,3,Normal @@ -164,8 +164,12 @@ id,_name,item_sub_type,grade,elemental_type 600102,Special Crystal Lump,EquipmentMaterial,2,Normal 600103,Special Crystal Ore,EquipmentMaterial,3,Normal 600104,Special Crystal Jewel,EquipmentMaterial,4,Normal -600201,황금 가루,EquipmentMaterial,4,Normal -600202,Aura 가루,EquipmentMaterial,4,Normal +600201,golden dust,EquipmentMaterial,4,Normal +600301,망치 커먼,EquipmentMaterial,1,Normal +600302,망치 레어,EquipmentMaterial,2,Normal +600303,망치 에픽,EquipmentMaterial,3,Normal +600304,망치 유니크,EquipmentMaterial,4,Normal +600305,망치 레전더리,EquipmentMaterial,5,Normal 700000,아레나 시즌0 메달,NormalMaterial,5,Normal 700001,아레나 시즌1 메달,NormalMaterial,5,Normal 700002,아레나 시즌2 메달,NormalMaterial,5,Normal @@ -195,4 +199,16 @@ id,_name,item_sub_type,grade,elemental_type 700506,챔피언 쉽 5 메달,NormalMaterial,5,Normal 700602,시즌 15 메달,NormalMaterial,5,Normal 700604,시즌 16 메달,NormalMaterial,5,Normal -700606,챔피언 쉽 6 메달,NormalMaterial,5,Normal \ No newline at end of file +700606,챔피언 쉽 6 메달,NormalMaterial,5,Normal +700702,시즌 17 메달,NormalMaterial,5,Normal +700704,시즌 18 메달,NormalMaterial,5,Normal +700706,챔피언 쉽 7 메달,NormalMaterial,5,Normal +700802,시즌 19 메달,NormalMaterial,5,Normal +700804,시즌 20 메달,NormalMaterial,5,Normal +700806,챔피언 쉽 8 메달,NormalMaterial,5,Normal +700902,시즌 21 메달,NormalMaterial,5,Normal +700904,시즌 22 메달,NormalMaterial,5,Normal +700906,챔피언 쉽 9 메달,NormalMaterial,5,Normal +701002,시즌 23 메달,NormalMaterial,5,Normal +701004,시즌 24 메달,NormalMaterial,5,Normal +701006,챔피언 쉽 10 메달,NormalMaterial,5,Normal \ No newline at end of file diff --git a/Lib9c/TableCSV/MonsterCollectionRewardSheet.csv b/Lib9c/TableCSV/MonsterCollectionRewardSheet.csv index 90280e1d80..0f1c5ed866 100644 --- a/Lib9c/TableCSV/MonsterCollectionRewardSheet.csv +++ b/Lib9c/TableCSV/MonsterCollectionRewardSheet.csv @@ -12,4 +12,4 @@ collection_level,item_id,quantity 6,400000,120965 6,500000,361 7,400000,350965 -7,500000,1121 +7,500000,1121 \ No newline at end of file diff --git a/Lib9c/TableCSV/MonsterCollectionSheet.csv b/Lib9c/TableCSV/MonsterCollectionSheet.csv index ce5bdfd23c..ec5064d698 100644 --- a/Lib9c/TableCSV/MonsterCollectionSheet.csv +++ b/Lib9c/TableCSV/MonsterCollectionSheet.csv @@ -5,4 +5,4 @@ level,required_gold,reward_id 4,54000,4 5,270000,5 6,480000,6 -7,1500000,7 +7,1500000,7 \ No newline at end of file diff --git a/Lib9c/TableCSV/Pet/PetCostSheet.csv b/Lib9c/TableCSV/Pet/PetCostSheet.csv index b0e6f0bcfe..1667d09b8b 100644 --- a/Lib9c/TableCSV/Pet/PetCostSheet.csv +++ b/Lib9c/TableCSV/Pet/PetCostSheet.csv @@ -1,121 +1,401 @@ -ID,_PET NAME,PetLevel,SoulStoneQuantity,NcgQuantity -1001,D:CC 블랙캣,1,10,0 -1001,D:CC 블랙캣,2,20,0 -1001,D:CC 블랙캣,3,30,0 -1001,D:CC 블랙캣,4,40,0 -1001,D:CC 블랙캣,5,50,2 -1001,D:CC 블랙캣,6,60,0 -1001,D:CC 블랙캣,7,70,0 -1001,D:CC 블랙캣,8,80,0 -1001,D:CC 블랙캣,9,90,0 -1001,D:CC 블랙캣,10,100,4 -1001,D:CC 블랙캣,11,110,0 -1001,D:CC 블랙캣,12,120,0 -1001,D:CC 블랙캣,13,130,0 -1001,D:CC 블랙캣,14,140,0 -1001,D:CC 블랙캣,15,150,6 -1001,D:CC 블랙캣,16,160,0 -1001,D:CC 블랙캣,17,170,0 -1001,D:CC 블랙캣,18,180,0 -1001,D:CC 블랙캣,19,190,0 -1001,D:CC 블랙캣,20,200,8 -1001,D:CC 블랙캣,21,210,0 -1001,D:CC 블랙캣,22,220,0 -1001,D:CC 블랙캣,23,230,0 -1001,D:CC 블랙캣,24,240,0 -1001,D:CC 블랙캣,25,250,10 -1001,D:CC 블랙캣,26,260,0 -1001,D:CC 블랙캣,27,270,0 -1001,D:CC 블랙캣,28,280,0 -1001,D:CC 블랙캣,29,290,0 -1001,D:CC 블랙캣,30,300,20 -1002,빨간 동글이,1,10,0 -1002,빨간 동글이,2,20,0 -1002,빨간 동글이,3,30,0 -1002,빨간 동글이,4,40,0 -1002,빨간 동글이,5,50,10 -1002,빨간 동글이,6,60,0 -1002,빨간 동글이,7,70,0 -1002,빨간 동글이,8,80,0 -1002,빨간 동글이,9,90,0 -1002,빨간 동글이,10,100,20 -1002,빨간 동글이,11,110,0 -1002,빨간 동글이,12,120,0 -1002,빨간 동글이,13,130,0 -1002,빨간 동글이,14,140,0 -1002,빨간 동글이,15,150,30 -1002,빨간 동글이,16,160,0 -1002,빨간 동글이,17,170,0 -1002,빨간 동글이,18,180,0 -1002,빨간 동글이,19,190,0 -1002,빨간 동글이,20,200,40 -1002,빨간 동글이,21,210,0 -1002,빨간 동글이,22,220,0 -1002,빨간 동글이,23,230,0 -1002,빨간 동글이,24,240,0 -1002,빨간 동글이,25,250,50 -1002,빨간 동글이,26,260,0 -1002,빨간 동글이,27,270,0 -1002,빨간 동글이,28,280,0 -1002,빨간 동글이,29,290,0 -1002,빨간 동글이,30,300,100 -1003,빛의 발키리,1,10,0 -1003,빛의 발키리,2,20,0 -1003,빛의 발키리,3,30,0 -1003,빛의 발키리,4,40,0 -1003,빛의 발키리,5,50,30 -1003,빛의 발키리,6,60,0 -1003,빛의 발키리,7,70,0 -1003,빛의 발키리,8,80,0 -1003,빛의 발키리,9,90,0 -1003,빛의 발키리,10,100,60 -1003,빛의 발키리,11,110,0 -1003,빛의 발키리,12,120,0 -1003,빛의 발키리,13,130,0 -1003,빛의 발키리,14,140,0 -1003,빛의 발키리,15,150,90 -1003,빛의 발키리,16,160,0 -1003,빛의 발키리,17,170,0 -1003,빛의 발키리,18,180,0 -1003,빛의 발키리,19,190,0 -1003,빛의 발키리,20,200,120 -1003,빛의 발키리,21,210,0 -1003,빛의 발키리,22,220,0 -1003,빛의 발키리,23,230,0 -1003,빛의 발키리,24,240,0 -1003,빛의 발키리,25,250,150 -1003,빛의 발키리,26,260,0 -1003,빛의 발키리,27,270,0 -1003,빛의 발키리,28,280,0 -1003,빛의 발키리,29,290,0 -1003,빛의 발키리,30,300,200 -1004,꼬마 펜리르,1,10,0 -1004,꼬마 펜리르,2,20,0 -1004,꼬마 펜리르,3,30,0 -1004,꼬마 펜리르,4,40,0 -1004,꼬마 펜리르,5,50,30 -1004,꼬마 펜리르,6,60,0 -1004,꼬마 펜리르,7,70,0 -1004,꼬마 펜리르,8,80,0 -1004,꼬마 펜리르,9,90,0 -1004,꼬마 펜리르,10,100,60 -1004,꼬마 펜리르,11,110,0 -1004,꼬마 펜리르,12,120,0 -1004,꼬마 펜리르,13,130,0 -1004,꼬마 펜리르,14,140,0 -1004,꼬마 펜리르,15,150,90 -1004,꼬마 펜리르,16,160,0 -1004,꼬마 펜리르,17,170,0 -1004,꼬마 펜리르,18,180,0 -1004,꼬마 펜리르,19,190,0 -1004,꼬마 펜리르,20,200,120 -1004,꼬마 펜리르,21,210,0 -1004,꼬마 펜리르,22,220,0 -1004,꼬마 펜리르,23,230,0 -1004,꼬마 펜리르,24,240,0 -1004,꼬마 펜리르,25,250,150 -1004,꼬마 펜리르,26,260,0 -1004,꼬마 펜리르,27,270,0 -1004,꼬마 펜리르,28,280,0 -1004,꼬마 펜리르,29,290,0 -1004,꼬마 펜리르,30,300,200 \ No newline at end of file +ID,_PetName,PetLevel,SoulStoneQuantity,NcgQuantity +1001,D:CC BlackCat,1,10,0 +1001,D:CC BlackCat,2,10,0 +1001,D:CC BlackCat,3,10,0 +1001,D:CC BlackCat,4,10,0 +1001,D:CC BlackCat,5,10,0 +1001,D:CC BlackCat,6,10,0 +1001,D:CC BlackCat,7,10,0 +1001,D:CC BlackCat,8,10,0 +1001,D:CC BlackCat,9,10,60 +1001,D:CC BlackCat,10,10,0 +1001,D:CC BlackCat,11,10,0 +1001,D:CC BlackCat,12,10,0 +1001,D:CC BlackCat,13,10,0 +1001,D:CC BlackCat,14,10,0 +1001,D:CC BlackCat,15,10,0 +1001,D:CC BlackCat,16,10,0 +1001,D:CC BlackCat,17,10,0 +1001,D:CC BlackCat,18,10,0 +1001,D:CC BlackCat,19,10,60 +1001,D:CC BlackCat,20,10,0 +1001,D:CC BlackCat,21,10,0 +1001,D:CC BlackCat,22,10,0 +1001,D:CC BlackCat,23,10,0 +1001,D:CC BlackCat,24,10,0 +1001,D:CC BlackCat,25,10,0 +1001,D:CC BlackCat,26,10,0 +1001,D:CC BlackCat,27,10,0 +1001,D:CC BlackCat,28,10,0 +1001,D:CC BlackCat,29,10,60 +1001,D:CC BlackCat,30,10,0 +1001,D:CC BlackCat,31,10,0 +1001,D:CC BlackCat,32,10,0 +1001,D:CC BlackCat,33,10,0 +1001,D:CC BlackCat,34,10,0 +1001,D:CC BlackCat,35,10,0 +1001,D:CC BlackCat,36,10,0 +1001,D:CC BlackCat,37,10,0 +1001,D:CC BlackCat,38,10,0 +1001,D:CC BlackCat,39,10,60 +1001,D:CC BlackCat,40,10,0 +1001,D:CC BlackCat,41,10,0 +1001,D:CC BlackCat,42,10,0 +1001,D:CC BlackCat,43,10,0 +1001,D:CC BlackCat,44,10,0 +1001,D:CC BlackCat,45,10,0 +1001,D:CC BlackCat,46,10,0 +1001,D:CC BlackCat,47,10,0 +1001,D:CC BlackCat,48,10,0 +1001,D:CC BlackCat,49,10,60 +1001,D:CC BlackCat,50,10,0 +1001,D:CC BlackCat,51,10,0 +1001,D:CC BlackCat,52,10,0 +1001,D:CC BlackCat,53,10,0 +1001,D:CC BlackCat,54,10,0 +1001,D:CC BlackCat,55,10,0 +1001,D:CC BlackCat,56,10,0 +1001,D:CC BlackCat,57,10,0 +1001,D:CC BlackCat,58,10,0 +1001,D:CC BlackCat,59,10,60 +1001,D:CC BlackCat,60,10,0 +1001,D:CC BlackCat,61,10,0 +1001,D:CC BlackCat,62,10,0 +1001,D:CC BlackCat,63,10,0 +1001,D:CC BlackCat,64,10,0 +1001,D:CC BlackCat,65,10,0 +1001,D:CC BlackCat,66,10,0 +1001,D:CC BlackCat,67,10,0 +1001,D:CC BlackCat,68,10,0 +1001,D:CC BlackCat,69,10,60 +1001,D:CC BlackCat,70,10,0 +1001,D:CC BlackCat,71,10,0 +1001,D:CC BlackCat,72,10,0 +1001,D:CC BlackCat,73,10,0 +1001,D:CC BlackCat,74,10,0 +1001,D:CC BlackCat,75,10,0 +1001,D:CC BlackCat,76,10,0 +1001,D:CC BlackCat,77,10,0 +1001,D:CC BlackCat,78,10,0 +1001,D:CC BlackCat,79,10,60 +1001,D:CC BlackCat,80,10,0 +1001,D:CC BlackCat,81,10,0 +1001,D:CC BlackCat,82,10,0 +1001,D:CC BlackCat,83,10,0 +1001,D:CC BlackCat,84,10,0 +1001,D:CC BlackCat,85,10,0 +1001,D:CC BlackCat,86,10,0 +1001,D:CC BlackCat,87,10,0 +1001,D:CC BlackCat,88,10,0 +1001,D:CC BlackCat,89,10,60 +1001,D:CC BlackCat,90,10,0 +1001,D:CC BlackCat,91,10,0 +1001,D:CC BlackCat,92,10,0 +1001,D:CC BlackCat,93,10,0 +1001,D:CC BlackCat,94,10,0 +1001,D:CC BlackCat,95,10,0 +1001,D:CC BlackCat,96,10,0 +1001,D:CC BlackCat,97,10,0 +1001,D:CC BlackCat,98,10,0 +1001,D:CC BlackCat,99,10,60 +1001,D:CC BlackCat,100,10,0 +1002,Red Donguri,1,10,0 +1002,Red Donguri,2,10,0 +1002,Red Donguri,3,10,0 +1002,Red Donguri,4,10,0 +1002,Red Donguri,5,10,0 +1002,Red Donguri,6,10,0 +1002,Red Donguri,7,10,0 +1002,Red Donguri,8,10,0 +1002,Red Donguri,9,10,100 +1002,Red Donguri,10,10,0 +1002,Red Donguri,11,10,0 +1002,Red Donguri,12,10,0 +1002,Red Donguri,13,10,0 +1002,Red Donguri,14,10,0 +1002,Red Donguri,15,10,0 +1002,Red Donguri,16,10,0 +1002,Red Donguri,17,10,0 +1002,Red Donguri,18,10,0 +1002,Red Donguri,19,10,100 +1002,Red Donguri,20,10,0 +1002,Red Donguri,21,10,0 +1002,Red Donguri,22,10,0 +1002,Red Donguri,23,10,0 +1002,Red Donguri,24,10,0 +1002,Red Donguri,25,10,0 +1002,Red Donguri,26,10,0 +1002,Red Donguri,27,10,0 +1002,Red Donguri,28,10,0 +1002,Red Donguri,29,10,100 +1002,Red Donguri,30,10,0 +1002,Red Donguri,31,10,0 +1002,Red Donguri,32,10,0 +1002,Red Donguri,33,10,0 +1002,Red Donguri,34,10,0 +1002,Red Donguri,35,10,0 +1002,Red Donguri,36,10,0 +1002,Red Donguri,37,10,0 +1002,Red Donguri,38,10,0 +1002,Red Donguri,39,10,100 +1002,Red Donguri,40,10,0 +1002,Red Donguri,41,10,0 +1002,Red Donguri,42,10,0 +1002,Red Donguri,43,10,0 +1002,Red Donguri,44,10,0 +1002,Red Donguri,45,10,0 +1002,Red Donguri,46,10,0 +1002,Red Donguri,47,10,0 +1002,Red Donguri,48,10,0 +1002,Red Donguri,49,10,100 +1002,Red Donguri,50,10,0 +1002,Red Donguri,51,10,0 +1002,Red Donguri,52,10,0 +1002,Red Donguri,53,10,0 +1002,Red Donguri,54,10,0 +1002,Red Donguri,55,10,0 +1002,Red Donguri,56,10,0 +1002,Red Donguri,57,10,0 +1002,Red Donguri,58,10,0 +1002,Red Donguri,59,10,100 +1002,Red Donguri,60,10,0 +1002,Red Donguri,61,10,0 +1002,Red Donguri,62,10,0 +1002,Red Donguri,63,10,0 +1002,Red Donguri,64,10,0 +1002,Red Donguri,65,10,0 +1002,Red Donguri,66,10,0 +1002,Red Donguri,67,10,0 +1002,Red Donguri,68,10,0 +1002,Red Donguri,69,10,100 +1002,Red Donguri,70,10,0 +1002,Red Donguri,71,10,0 +1002,Red Donguri,72,10,0 +1002,Red Donguri,73,10,0 +1002,Red Donguri,74,10,0 +1002,Red Donguri,75,10,0 +1002,Red Donguri,76,10,0 +1002,Red Donguri,77,10,0 +1002,Red Donguri,78,10,0 +1002,Red Donguri,79,10,100 +1002,Red Donguri,80,10,0 +1002,Red Donguri,81,10,0 +1002,Red Donguri,82,10,0 +1002,Red Donguri,83,10,0 +1002,Red Donguri,84,10,0 +1002,Red Donguri,85,10,0 +1002,Red Donguri,86,10,0 +1002,Red Donguri,87,10,0 +1002,Red Donguri,88,10,0 +1002,Red Donguri,89,10,100 +1002,Red Donguri,90,10,0 +1002,Red Donguri,91,10,0 +1002,Red Donguri,92,10,0 +1002,Red Donguri,93,10,0 +1002,Red Donguri,94,10,0 +1002,Red Donguri,95,10,0 +1002,Red Donguri,96,10,0 +1002,Red Donguri,97,10,0 +1002,Red Donguri,98,10,0 +1002,Red Donguri,99,10,100 +1002,Red Donguri,100,10,0 +1003,Valkyrie,1,10,0 +1003,Valkyrie,2,10,0 +1003,Valkyrie,3,10,0 +1003,Valkyrie,4,10,0 +1003,Valkyrie,5,10,0 +1003,Valkyrie,6,10,0 +1003,Valkyrie,7,10,0 +1003,Valkyrie,8,10,0 +1003,Valkyrie,9,10,150 +1003,Valkyrie,10,10,0 +1003,Valkyrie,11,10,0 +1003,Valkyrie,12,10,0 +1003,Valkyrie,13,10,0 +1003,Valkyrie,14,10,0 +1003,Valkyrie,15,10,0 +1003,Valkyrie,16,10,0 +1003,Valkyrie,17,10,0 +1003,Valkyrie,18,10,0 +1003,Valkyrie,19,10,150 +1003,Valkyrie,20,10,0 +1003,Valkyrie,21,10,0 +1003,Valkyrie,22,10,0 +1003,Valkyrie,23,10,0 +1003,Valkyrie,24,10,0 +1003,Valkyrie,25,10,0 +1003,Valkyrie,26,10,0 +1003,Valkyrie,27,10,0 +1003,Valkyrie,28,10,0 +1003,Valkyrie,29,10,150 +1003,Valkyrie,30,10,0 +1003,Valkyrie,31,10,0 +1003,Valkyrie,32,10,0 +1003,Valkyrie,33,10,0 +1003,Valkyrie,34,10,0 +1003,Valkyrie,35,10,0 +1003,Valkyrie,36,10,0 +1003,Valkyrie,37,10,0 +1003,Valkyrie,38,10,0 +1003,Valkyrie,39,10,150 +1003,Valkyrie,40,10,0 +1003,Valkyrie,41,10,0 +1003,Valkyrie,42,10,0 +1003,Valkyrie,43,10,0 +1003,Valkyrie,44,10,0 +1003,Valkyrie,45,10,0 +1003,Valkyrie,46,10,0 +1003,Valkyrie,47,10,0 +1003,Valkyrie,48,10,0 +1003,Valkyrie,49,10,150 +1003,Valkyrie,50,10,0 +1003,Valkyrie,51,10,0 +1003,Valkyrie,52,10,0 +1003,Valkyrie,53,10,0 +1003,Valkyrie,54,10,0 +1003,Valkyrie,55,10,0 +1003,Valkyrie,56,10,0 +1003,Valkyrie,57,10,0 +1003,Valkyrie,58,10,0 +1003,Valkyrie,59,10,150 +1003,Valkyrie,60,10,0 +1003,Valkyrie,61,10,0 +1003,Valkyrie,62,10,0 +1003,Valkyrie,63,10,0 +1003,Valkyrie,64,10,0 +1003,Valkyrie,65,10,0 +1003,Valkyrie,66,10,0 +1003,Valkyrie,67,10,0 +1003,Valkyrie,68,10,0 +1003,Valkyrie,69,10,150 +1003,Valkyrie,70,10,0 +1003,Valkyrie,71,10,0 +1003,Valkyrie,72,10,0 +1003,Valkyrie,73,10,0 +1003,Valkyrie,74,10,0 +1003,Valkyrie,75,10,0 +1003,Valkyrie,76,10,0 +1003,Valkyrie,77,10,0 +1003,Valkyrie,78,10,0 +1003,Valkyrie,79,10,150 +1003,Valkyrie,80,10,0 +1003,Valkyrie,81,10,0 +1003,Valkyrie,82,10,0 +1003,Valkyrie,83,10,0 +1003,Valkyrie,84,10,0 +1003,Valkyrie,85,10,0 +1003,Valkyrie,86,10,0 +1003,Valkyrie,87,10,0 +1003,Valkyrie,88,10,0 +1003,Valkyrie,89,10,150 +1003,Valkyrie,90,10,0 +1003,Valkyrie,91,10,0 +1003,Valkyrie,92,10,0 +1003,Valkyrie,93,10,0 +1003,Valkyrie,94,10,0 +1003,Valkyrie,95,10,0 +1003,Valkyrie,96,10,0 +1003,Valkyrie,97,10,0 +1003,Valkyrie,98,10,0 +1003,Valkyrie,99,10,150 +1003,Valkyrie,100,10,0 +1004,lil fenrir,1,10,0 +1004,lil fenrir,2,10,0 +1004,lil fenrir,3,10,0 +1004,lil fenrir,4,10,0 +1004,lil fenrir,5,10,0 +1004,lil fenrir,6,10,0 +1004,lil fenrir,7,10,0 +1004,lil fenrir,8,10,0 +1004,lil fenrir,9,10,300 +1004,lil fenrir,10,10,0 +1004,lil fenrir,11,10,0 +1004,lil fenrir,12,10,0 +1004,lil fenrir,13,10,0 +1004,lil fenrir,14,10,0 +1004,lil fenrir,15,10,0 +1004,lil fenrir,16,10,0 +1004,lil fenrir,17,10,0 +1004,lil fenrir,18,10,0 +1004,lil fenrir,19,10,300 +1004,lil fenrir,20,10,0 +1004,lil fenrir,21,10,0 +1004,lil fenrir,22,10,0 +1004,lil fenrir,23,10,0 +1004,lil fenrir,24,10,0 +1004,lil fenrir,25,10,0 +1004,lil fenrir,26,10,0 +1004,lil fenrir,27,10,0 +1004,lil fenrir,28,10,0 +1004,lil fenrir,29,10,300 +1004,lil fenrir,30,10,0 +1004,lil fenrir,31,10,0 +1004,lil fenrir,32,10,0 +1004,lil fenrir,33,10,0 +1004,lil fenrir,34,10,0 +1004,lil fenrir,35,10,0 +1004,lil fenrir,36,10,0 +1004,lil fenrir,37,10,0 +1004,lil fenrir,38,10,0 +1004,lil fenrir,39,10,300 +1004,lil fenrir,40,10,0 +1004,lil fenrir,41,10,0 +1004,lil fenrir,42,10,0 +1004,lil fenrir,43,10,0 +1004,lil fenrir,44,10,0 +1004,lil fenrir,45,10,0 +1004,lil fenrir,46,10,0 +1004,lil fenrir,47,10,0 +1004,lil fenrir,48,10,0 +1004,lil fenrir,49,10,300 +1004,lil fenrir,50,10,0 +1004,lil fenrir,51,10,0 +1004,lil fenrir,52,10,0 +1004,lil fenrir,53,10,0 +1004,lil fenrir,54,10,0 +1004,lil fenrir,55,10,0 +1004,lil fenrir,56,10,0 +1004,lil fenrir,57,10,0 +1004,lil fenrir,58,10,0 +1004,lil fenrir,59,10,300 +1004,lil fenrir,60,10,0 +1004,lil fenrir,61,10,0 +1004,lil fenrir,62,10,0 +1004,lil fenrir,63,10,0 +1004,lil fenrir,64,10,0 +1004,lil fenrir,65,10,0 +1004,lil fenrir,66,10,0 +1004,lil fenrir,67,10,0 +1004,lil fenrir,68,10,0 +1004,lil fenrir,69,10,300 +1004,lil fenrir,70,10,0 +1004,lil fenrir,71,10,0 +1004,lil fenrir,72,10,0 +1004,lil fenrir,73,10,0 +1004,lil fenrir,74,10,0 +1004,lil fenrir,75,10,0 +1004,lil fenrir,76,10,0 +1004,lil fenrir,77,10,0 +1004,lil fenrir,78,10,0 +1004,lil fenrir,79,10,300 +1004,lil fenrir,80,10,0 +1004,lil fenrir,81,10,0 +1004,lil fenrir,82,10,0 +1004,lil fenrir,83,10,0 +1004,lil fenrir,84,10,0 +1004,lil fenrir,85,10,0 +1004,lil fenrir,86,10,0 +1004,lil fenrir,87,10,0 +1004,lil fenrir,88,10,0 +1004,lil fenrir,89,10,300 +1004,lil fenrir,90,10,0 +1004,lil fenrir,91,10,0 +1004,lil fenrir,92,10,0 +1004,lil fenrir,93,10,0 +1004,lil fenrir,94,10,0 +1004,lil fenrir,95,10,0 +1004,lil fenrir,96,10,0 +1004,lil fenrir,97,10,0 +1004,lil fenrir,98,10,0 +1004,lil fenrir,99,10,300 +1004,lil fenrir,100,10,0 \ No newline at end of file diff --git a/Lib9c/TableCSV/Pet/PetOptionSheet.csv b/Lib9c/TableCSV/Pet/PetOptionSheet.csv index 5fa7ced6ed..83d7019d08 100644 --- a/Lib9c/TableCSV/Pet/PetOptionSheet.csv +++ b/Lib9c/TableCSV/Pet/PetOptionSheet.csv @@ -1,121 +1,401 @@ -ID,_PET NAME,PetLevel,OptionType,OptionValue -1001,D:CC 블랙캣,1,ReduceRequiredBlock,5.5 -1001,D:CC 블랙캣,2,ReduceRequiredBlock,6 -1001,D:CC 블랙캣,3,ReduceRequiredBlock,6.5 -1001,D:CC 블랙캣,4,ReduceRequiredBlock,7 -1001,D:CC 블랙캣,5,ReduceRequiredBlock,7.5 -1001,D:CC 블랙캣,6,ReduceRequiredBlock,8 -1001,D:CC 블랙캣,7,ReduceRequiredBlock,8.5 -1001,D:CC 블랙캣,8,ReduceRequiredBlock,9 -1001,D:CC 블랙캣,9,ReduceRequiredBlock,9.5 -1001,D:CC 블랙캣,10,ReduceRequiredBlock,10 -1001,D:CC 블랙캣,11,ReduceRequiredBlock,10.5 -1001,D:CC 블랙캣,12,ReduceRequiredBlock,11 -1001,D:CC 블랙캣,13,ReduceRequiredBlock,11.5 -1001,D:CC 블랙캣,14,ReduceRequiredBlock,12 -1001,D:CC 블랙캣,15,ReduceRequiredBlock,12.5 -1001,D:CC 블랙캣,16,ReduceRequiredBlock,13 -1001,D:CC 블랙캣,17,ReduceRequiredBlock,13.5 -1001,D:CC 블랙캣,18,ReduceRequiredBlock,14 -1001,D:CC 블랙캣,19,ReduceRequiredBlock,14.5 -1001,D:CC 블랙캣,20,ReduceRequiredBlock,15 -1001,D:CC 블랙캣,21,ReduceRequiredBlock,15.5 -1001,D:CC 블랙캣,22,ReduceRequiredBlock,16 -1001,D:CC 블랙캣,23,ReduceRequiredBlock,16.5 -1001,D:CC 블랙캣,24,ReduceRequiredBlock,17 -1001,D:CC 블랙캣,25,ReduceRequiredBlock,17.5 -1001,D:CC 블랙캣,26,ReduceRequiredBlock,18 -1001,D:CC 블랙캣,27,ReduceRequiredBlock,18.5 -1001,D:CC 블랙캣,28,ReduceRequiredBlock,19 -1001,D:CC 블랙캣,29,ReduceRequiredBlock,19.5 -1001,D:CC 블랙캣,30,ReduceRequiredBlock,20 -1002,빨간 동글이,1,DiscountMaterialCostCrystal,2.5 -1002,빨간 동글이,2,DiscountMaterialCostCrystal,3 -1002,빨간 동글이,3,DiscountMaterialCostCrystal,3.5 -1002,빨간 동글이,4,DiscountMaterialCostCrystal,4 -1002,빨간 동글이,5,DiscountMaterialCostCrystal,4.5 -1002,빨간 동글이,6,DiscountMaterialCostCrystal,5 -1002,빨간 동글이,7,DiscountMaterialCostCrystal,5.5 -1002,빨간 동글이,8,DiscountMaterialCostCrystal,6 -1002,빨간 동글이,9,DiscountMaterialCostCrystal,6.5 -1002,빨간 동글이,10,DiscountMaterialCostCrystal,7 -1002,빨간 동글이,11,DiscountMaterialCostCrystal,7.5 -1002,빨간 동글이,12,DiscountMaterialCostCrystal,8 -1002,빨간 동글이,13,DiscountMaterialCostCrystal,8.5 -1002,빨간 동글이,14,DiscountMaterialCostCrystal,9 -1002,빨간 동글이,15,DiscountMaterialCostCrystal,9.5 -1002,빨간 동글이,16,DiscountMaterialCostCrystal,10 -1002,빨간 동글이,17,DiscountMaterialCostCrystal,10.5 -1002,빨간 동글이,18,DiscountMaterialCostCrystal,11 -1002,빨간 동글이,19,DiscountMaterialCostCrystal,11.5 -1002,빨간 동글이,20,DiscountMaterialCostCrystal,12 -1002,빨간 동글이,21,DiscountMaterialCostCrystal,12.5 -1002,빨간 동글이,22,DiscountMaterialCostCrystal,13 -1002,빨간 동글이,23,DiscountMaterialCostCrystal,13.5 -1002,빨간 동글이,24,DiscountMaterialCostCrystal,14 -1002,빨간 동글이,25,DiscountMaterialCostCrystal,14.5 -1002,빨간 동글이,26,DiscountMaterialCostCrystal,15 -1002,빨간 동글이,27,DiscountMaterialCostCrystal,15.5 -1002,빨간 동글이,28,DiscountMaterialCostCrystal,16 -1002,빨간 동글이,29,DiscountMaterialCostCrystal,16.5 -1002,빨간 동글이,30,DiscountMaterialCostCrystal,17 -1003,빛의 발키리,1,IncreaseBlockPerHourglass,1 -1003,빛의 발키리,2,IncreaseBlockPerHourglass,2 -1003,빛의 발키리,3,IncreaseBlockPerHourglass,3 -1003,빛의 발키리,4,IncreaseBlockPerHourglass,4 -1003,빛의 발키리,5,IncreaseBlockPerHourglass,5 -1003,빛의 발키리,6,IncreaseBlockPerHourglass,6 -1003,빛의 발키리,7,IncreaseBlockPerHourglass,7 -1003,빛의 발키리,8,IncreaseBlockPerHourglass,8 -1003,빛의 발키리,9,IncreaseBlockPerHourglass,9 -1003,빛의 발키리,10,IncreaseBlockPerHourglass,10 -1003,빛의 발키리,11,IncreaseBlockPerHourglass,11 -1003,빛의 발키리,12,IncreaseBlockPerHourglass,12 -1003,빛의 발키리,13,IncreaseBlockPerHourglass,13 -1003,빛의 발키리,14,IncreaseBlockPerHourglass,14 -1003,빛의 발키리,15,IncreaseBlockPerHourglass,15 -1003,빛의 발키리,16,IncreaseBlockPerHourglass,16 -1003,빛의 발키리,17,IncreaseBlockPerHourglass,17 -1003,빛의 발키리,18,IncreaseBlockPerHourglass,18 -1003,빛의 발키리,19,IncreaseBlockPerHourglass,19 -1003,빛의 발키리,20,IncreaseBlockPerHourglass,20 -1003,빛의 발키리,21,IncreaseBlockPerHourglass,21 -1003,빛의 발키리,22,IncreaseBlockPerHourglass,22 -1003,빛의 발키리,23,IncreaseBlockPerHourglass,23 -1003,빛의 발키리,24,IncreaseBlockPerHourglass,24 -1003,빛의 발키리,25,IncreaseBlockPerHourglass,25 -1003,빛의 발키리,26,IncreaseBlockPerHourglass,26 -1003,빛의 발키리,27,IncreaseBlockPerHourglass,27 -1003,빛의 발키리,28,IncreaseBlockPerHourglass,28 -1003,빛의 발키리,29,IncreaseBlockPerHourglass,29 -1003,빛의 발키리,30,IncreaseBlockPerHourglass,30 -1004,꼬마 펜리르,1,AdditionalOptionRateByFixedValue,5.5 -1004,꼬마 펜리르,2,AdditionalOptionRateByFixedValue,6 -1004,꼬마 펜리르,3,AdditionalOptionRateByFixedValue,6.5 -1004,꼬마 펜리르,4,AdditionalOptionRateByFixedValue,7 -1004,꼬마 펜리르,5,AdditionalOptionRateByFixedValue,7.5 -1004,꼬마 펜리르,6,AdditionalOptionRateByFixedValue,8 -1004,꼬마 펜리르,7,AdditionalOptionRateByFixedValue,8.5 -1004,꼬마 펜리르,8,AdditionalOptionRateByFixedValue,9 -1004,꼬마 펜리르,9,AdditionalOptionRateByFixedValue,9.5 -1004,꼬마 펜리르,10,AdditionalOptionRateByFixedValue,10 -1004,꼬마 펜리르,11,AdditionalOptionRateByFixedValue,10.5 -1004,꼬마 펜리르,12,AdditionalOptionRateByFixedValue,11 -1004,꼬마 펜리르,13,AdditionalOptionRateByFixedValue,11.5 -1004,꼬마 펜리르,14,AdditionalOptionRateByFixedValue,12 -1004,꼬마 펜리르,15,AdditionalOptionRateByFixedValue,12.5 -1004,꼬마 펜리르,16,AdditionalOptionRateByFixedValue,13 -1004,꼬마 펜리르,17,AdditionalOptionRateByFixedValue,13.5 -1004,꼬마 펜리르,18,AdditionalOptionRateByFixedValue,14 -1004,꼬마 펜리르,19,AdditionalOptionRateByFixedValue,14.5 -1004,꼬마 펜리르,20,AdditionalOptionRateByFixedValue,15 -1004,꼬마 펜리르,21,AdditionalOptionRateByFixedValue,15.5 -1004,꼬마 펜리르,22,AdditionalOptionRateByFixedValue,16 -1004,꼬마 펜리르,23,AdditionalOptionRateByFixedValue,16.5 -1004,꼬마 펜리르,24,AdditionalOptionRateByFixedValue,17 -1004,꼬마 펜리르,25,AdditionalOptionRateByFixedValue,17.5 -1004,꼬마 펜리르,26,AdditionalOptionRateByFixedValue,18 -1004,꼬마 펜리르,27,AdditionalOptionRateByFixedValue,18.5 -1004,꼬마 펜리르,28,AdditionalOptionRateByFixedValue,19 -1004,꼬마 펜리르,29,AdditionalOptionRateByFixedValue,19.5 -1004,꼬마 펜리르,30,AdditionalOptionRateByFixedValue,20 \ No newline at end of file +ID,_PetName,PetLevel,OptionType,OptionValue +1001,D:CC BlackCat,1,IncreaseBlockPerHourglass,1 +1001,D:CC BlackCat,2,IncreaseBlockPerHourglass,1.02 +1001,D:CC BlackCat,3,IncreaseBlockPerHourglass,1.04 +1001,D:CC BlackCat,4,IncreaseBlockPerHourglass,1.06 +1001,D:CC BlackCat,5,IncreaseBlockPerHourglass,1.08 +1001,D:CC BlackCat,6,IncreaseBlockPerHourglass,1.1 +1001,D:CC BlackCat,7,IncreaseBlockPerHourglass,1.12 +1001,D:CC BlackCat,8,IncreaseBlockPerHourglass,1.14 +1001,D:CC BlackCat,9,IncreaseBlockPerHourglass,1.16 +1001,D:CC BlackCat,10,IncreaseBlockPerHourglass,1.18 +1001,D:CC BlackCat,11,IncreaseBlockPerHourglass,1.2 +1001,D:CC BlackCat,12,IncreaseBlockPerHourglass,1.22 +1001,D:CC BlackCat,13,IncreaseBlockPerHourglass,1.24 +1001,D:CC BlackCat,14,IncreaseBlockPerHourglass,1.26 +1001,D:CC BlackCat,15,IncreaseBlockPerHourglass,1.28 +1001,D:CC BlackCat,16,IncreaseBlockPerHourglass,1.3 +1001,D:CC BlackCat,17,IncreaseBlockPerHourglass,1.32 +1001,D:CC BlackCat,18,IncreaseBlockPerHourglass,1.34 +1001,D:CC BlackCat,19,IncreaseBlockPerHourglass,1.36 +1001,D:CC BlackCat,20,IncreaseBlockPerHourglass,1.38 +1001,D:CC BlackCat,21,IncreaseBlockPerHourglass,1.4 +1001,D:CC BlackCat,22,IncreaseBlockPerHourglass,1.42 +1001,D:CC BlackCat,23,IncreaseBlockPerHourglass,1.44 +1001,D:CC BlackCat,24,IncreaseBlockPerHourglass,1.46 +1001,D:CC BlackCat,25,IncreaseBlockPerHourglass,1.48 +1001,D:CC BlackCat,26,IncreaseBlockPerHourglass,1.5 +1001,D:CC BlackCat,27,IncreaseBlockPerHourglass,1.52 +1001,D:CC BlackCat,28,IncreaseBlockPerHourglass,1.54 +1001,D:CC BlackCat,29,IncreaseBlockPerHourglass,1.56 +1001,D:CC BlackCat,30,IncreaseBlockPerHourglass,1.58 +1001,D:CC BlackCat,31,IncreaseBlockPerHourglass,1.6 +1001,D:CC BlackCat,32,IncreaseBlockPerHourglass,1.62 +1001,D:CC BlackCat,33,IncreaseBlockPerHourglass,1.64 +1001,D:CC BlackCat,34,IncreaseBlockPerHourglass,1.66 +1001,D:CC BlackCat,35,IncreaseBlockPerHourglass,1.68 +1001,D:CC BlackCat,36,IncreaseBlockPerHourglass,1.7 +1001,D:CC BlackCat,37,IncreaseBlockPerHourglass,1.72 +1001,D:CC BlackCat,38,IncreaseBlockPerHourglass,1.74 +1001,D:CC BlackCat,39,IncreaseBlockPerHourglass,1.76 +1001,D:CC BlackCat,40,IncreaseBlockPerHourglass,1.78 +1001,D:CC BlackCat,41,IncreaseBlockPerHourglass,1.8 +1001,D:CC BlackCat,42,IncreaseBlockPerHourglass,1.82 +1001,D:CC BlackCat,43,IncreaseBlockPerHourglass,1.84 +1001,D:CC BlackCat,44,IncreaseBlockPerHourglass,1.86 +1001,D:CC BlackCat,45,IncreaseBlockPerHourglass,1.88 +1001,D:CC BlackCat,46,IncreaseBlockPerHourglass,1.9 +1001,D:CC BlackCat,47,IncreaseBlockPerHourglass,1.92 +1001,D:CC BlackCat,48,IncreaseBlockPerHourglass,1.94 +1001,D:CC BlackCat,49,IncreaseBlockPerHourglass,1.96 +1001,D:CC BlackCat,50,IncreaseBlockPerHourglass,1.98 +1001,D:CC BlackCat,51,IncreaseBlockPerHourglass,2 +1001,D:CC BlackCat,52,IncreaseBlockPerHourglass,2.02 +1001,D:CC BlackCat,53,IncreaseBlockPerHourglass,2.04 +1001,D:CC BlackCat,54,IncreaseBlockPerHourglass,2.06 +1001,D:CC BlackCat,55,IncreaseBlockPerHourglass,2.08 +1001,D:CC BlackCat,56,IncreaseBlockPerHourglass,2.1 +1001,D:CC BlackCat,57,IncreaseBlockPerHourglass,2.12 +1001,D:CC BlackCat,58,IncreaseBlockPerHourglass,2.14 +1001,D:CC BlackCat,59,IncreaseBlockPerHourglass,2.16 +1001,D:CC BlackCat,60,IncreaseBlockPerHourglass,2.18 +1001,D:CC BlackCat,61,IncreaseBlockPerHourglass,2.2 +1001,D:CC BlackCat,62,IncreaseBlockPerHourglass,2.22 +1001,D:CC BlackCat,63,IncreaseBlockPerHourglass,2.24 +1001,D:CC BlackCat,64,IncreaseBlockPerHourglass,2.26 +1001,D:CC BlackCat,65,IncreaseBlockPerHourglass,2.28 +1001,D:CC BlackCat,66,IncreaseBlockPerHourglass,2.3 +1001,D:CC BlackCat,67,IncreaseBlockPerHourglass,2.32 +1001,D:CC BlackCat,68,IncreaseBlockPerHourglass,2.34 +1001,D:CC BlackCat,69,IncreaseBlockPerHourglass,2.36 +1001,D:CC BlackCat,70,IncreaseBlockPerHourglass,2.38 +1001,D:CC BlackCat,71,IncreaseBlockPerHourglass,2.4 +1001,D:CC BlackCat,72,IncreaseBlockPerHourglass,2.42 +1001,D:CC BlackCat,73,IncreaseBlockPerHourglass,2.44 +1001,D:CC BlackCat,74,IncreaseBlockPerHourglass,2.46 +1001,D:CC BlackCat,75,IncreaseBlockPerHourglass,2.48 +1001,D:CC BlackCat,76,IncreaseBlockPerHourglass,2.5 +1001,D:CC BlackCat,77,IncreaseBlockPerHourglass,2.52 +1001,D:CC BlackCat,78,IncreaseBlockPerHourglass,2.54 +1001,D:CC BlackCat,79,IncreaseBlockPerHourglass,2.56 +1001,D:CC BlackCat,80,IncreaseBlockPerHourglass,2.58 +1001,D:CC BlackCat,81,IncreaseBlockPerHourglass,2.6 +1001,D:CC BlackCat,82,IncreaseBlockPerHourglass,2.62 +1001,D:CC BlackCat,83,IncreaseBlockPerHourglass,2.64 +1001,D:CC BlackCat,84,IncreaseBlockPerHourglass,2.66 +1001,D:CC BlackCat,85,IncreaseBlockPerHourglass,2.68 +1001,D:CC BlackCat,86,IncreaseBlockPerHourglass,2.7 +1001,D:CC BlackCat,87,IncreaseBlockPerHourglass,2.72 +1001,D:CC BlackCat,88,IncreaseBlockPerHourglass,2.74 +1001,D:CC BlackCat,89,IncreaseBlockPerHourglass,2.76 +1001,D:CC BlackCat,90,IncreaseBlockPerHourglass,2.78 +1001,D:CC BlackCat,91,IncreaseBlockPerHourglass,2.8 +1001,D:CC BlackCat,92,IncreaseBlockPerHourglass,2.82 +1001,D:CC BlackCat,93,IncreaseBlockPerHourglass,2.84 +1001,D:CC BlackCat,94,IncreaseBlockPerHourglass,2.86 +1001,D:CC BlackCat,95,IncreaseBlockPerHourglass,2.88 +1001,D:CC BlackCat,96,IncreaseBlockPerHourglass,2.9 +1001,D:CC BlackCat,97,IncreaseBlockPerHourglass,2.92 +1001,D:CC BlackCat,98,IncreaseBlockPerHourglass,2.94 +1001,D:CC BlackCat,99,IncreaseBlockPerHourglass,2.96 +1001,D:CC BlackCat,100,IncreaseBlockPerHourglass,3 +1002,Red Donguri,1,DiscountMaterialCostCrystal,20 +1002,Red Donguri,2,DiscountMaterialCostCrystal,20.2 +1002,Red Donguri,3,DiscountMaterialCostCrystal,20.4 +1002,Red Donguri,4,DiscountMaterialCostCrystal,20.6 +1002,Red Donguri,5,DiscountMaterialCostCrystal,20.8 +1002,Red Donguri,6,DiscountMaterialCostCrystal,21 +1002,Red Donguri,7,DiscountMaterialCostCrystal,21.2 +1002,Red Donguri,8,DiscountMaterialCostCrystal,21.4 +1002,Red Donguri,9,DiscountMaterialCostCrystal,21.6 +1002,Red Donguri,10,DiscountMaterialCostCrystal,21.8 +1002,Red Donguri,11,DiscountMaterialCostCrystal,22 +1002,Red Donguri,12,DiscountMaterialCostCrystal,22.2 +1002,Red Donguri,13,DiscountMaterialCostCrystal,22.4 +1002,Red Donguri,14,DiscountMaterialCostCrystal,22.6 +1002,Red Donguri,15,DiscountMaterialCostCrystal,22.8 +1002,Red Donguri,16,DiscountMaterialCostCrystal,23 +1002,Red Donguri,17,DiscountMaterialCostCrystal,23.2 +1002,Red Donguri,18,DiscountMaterialCostCrystal,23.4 +1002,Red Donguri,19,DiscountMaterialCostCrystal,23.6 +1002,Red Donguri,20,DiscountMaterialCostCrystal,23.8 +1002,Red Donguri,21,DiscountMaterialCostCrystal,24 +1002,Red Donguri,22,DiscountMaterialCostCrystal,24.2 +1002,Red Donguri,23,DiscountMaterialCostCrystal,24.4 +1002,Red Donguri,24,DiscountMaterialCostCrystal,24.6 +1002,Red Donguri,25,DiscountMaterialCostCrystal,24.8 +1002,Red Donguri,26,DiscountMaterialCostCrystal,25 +1002,Red Donguri,27,DiscountMaterialCostCrystal,25.2 +1002,Red Donguri,28,DiscountMaterialCostCrystal,25.4 +1002,Red Donguri,29,DiscountMaterialCostCrystal,25.6 +1002,Red Donguri,30,DiscountMaterialCostCrystal,25.8 +1002,Red Donguri,31,DiscountMaterialCostCrystal,26 +1002,Red Donguri,32,DiscountMaterialCostCrystal,26.2 +1002,Red Donguri,33,DiscountMaterialCostCrystal,26.4 +1002,Red Donguri,34,DiscountMaterialCostCrystal,26.6 +1002,Red Donguri,35,DiscountMaterialCostCrystal,26.8 +1002,Red Donguri,36,DiscountMaterialCostCrystal,27 +1002,Red Donguri,37,DiscountMaterialCostCrystal,27.2 +1002,Red Donguri,38,DiscountMaterialCostCrystal,27.4 +1002,Red Donguri,39,DiscountMaterialCostCrystal,27.6 +1002,Red Donguri,40,DiscountMaterialCostCrystal,27.8 +1002,Red Donguri,41,DiscountMaterialCostCrystal,28 +1002,Red Donguri,42,DiscountMaterialCostCrystal,28.2 +1002,Red Donguri,43,DiscountMaterialCostCrystal,28.4 +1002,Red Donguri,44,DiscountMaterialCostCrystal,28.6 +1002,Red Donguri,45,DiscountMaterialCostCrystal,28.8 +1002,Red Donguri,46,DiscountMaterialCostCrystal,29 +1002,Red Donguri,47,DiscountMaterialCostCrystal,29.2 +1002,Red Donguri,48,DiscountMaterialCostCrystal,29.4 +1002,Red Donguri,49,DiscountMaterialCostCrystal,29.6 +1002,Red Donguri,50,DiscountMaterialCostCrystal,29.8 +1002,Red Donguri,51,DiscountMaterialCostCrystal,30 +1002,Red Donguri,52,DiscountMaterialCostCrystal,30.2 +1002,Red Donguri,53,DiscountMaterialCostCrystal,30.4 +1002,Red Donguri,54,DiscountMaterialCostCrystal,30.6 +1002,Red Donguri,55,DiscountMaterialCostCrystal,30.8 +1002,Red Donguri,56,DiscountMaterialCostCrystal,31 +1002,Red Donguri,57,DiscountMaterialCostCrystal,31.2 +1002,Red Donguri,58,DiscountMaterialCostCrystal,31.4 +1002,Red Donguri,59,DiscountMaterialCostCrystal,31.6 +1002,Red Donguri,60,DiscountMaterialCostCrystal,31.8 +1002,Red Donguri,61,DiscountMaterialCostCrystal,32 +1002,Red Donguri,62,DiscountMaterialCostCrystal,32.2 +1002,Red Donguri,63,DiscountMaterialCostCrystal,32.4 +1002,Red Donguri,64,DiscountMaterialCostCrystal,32.6 +1002,Red Donguri,65,DiscountMaterialCostCrystal,32.8 +1002,Red Donguri,66,DiscountMaterialCostCrystal,33 +1002,Red Donguri,67,DiscountMaterialCostCrystal,33.2 +1002,Red Donguri,68,DiscountMaterialCostCrystal,33.4 +1002,Red Donguri,69,DiscountMaterialCostCrystal,33.6 +1002,Red Donguri,70,DiscountMaterialCostCrystal,33.8 +1002,Red Donguri,71,DiscountMaterialCostCrystal,34 +1002,Red Donguri,72,DiscountMaterialCostCrystal,34.2 +1002,Red Donguri,73,DiscountMaterialCostCrystal,34.4 +1002,Red Donguri,74,DiscountMaterialCostCrystal,34.6 +1002,Red Donguri,75,DiscountMaterialCostCrystal,34.8 +1002,Red Donguri,76,DiscountMaterialCostCrystal,35 +1002,Red Donguri,77,DiscountMaterialCostCrystal,35.2 +1002,Red Donguri,78,DiscountMaterialCostCrystal,35.4 +1002,Red Donguri,79,DiscountMaterialCostCrystal,35.6 +1002,Red Donguri,80,DiscountMaterialCostCrystal,35.8 +1002,Red Donguri,81,DiscountMaterialCostCrystal,36 +1002,Red Donguri,82,DiscountMaterialCostCrystal,36.2 +1002,Red Donguri,83,DiscountMaterialCostCrystal,36.4 +1002,Red Donguri,84,DiscountMaterialCostCrystal,36.6 +1002,Red Donguri,85,DiscountMaterialCostCrystal,36.8 +1002,Red Donguri,86,DiscountMaterialCostCrystal,37 +1002,Red Donguri,87,DiscountMaterialCostCrystal,37.2 +1002,Red Donguri,88,DiscountMaterialCostCrystal,37.4 +1002,Red Donguri,89,DiscountMaterialCostCrystal,37.6 +1002,Red Donguri,90,DiscountMaterialCostCrystal,37.8 +1002,Red Donguri,91,DiscountMaterialCostCrystal,38 +1002,Red Donguri,92,DiscountMaterialCostCrystal,38.2 +1002,Red Donguri,93,DiscountMaterialCostCrystal,38.4 +1002,Red Donguri,94,DiscountMaterialCostCrystal,38.6 +1002,Red Donguri,95,DiscountMaterialCostCrystal,38.8 +1002,Red Donguri,96,DiscountMaterialCostCrystal,39 +1002,Red Donguri,97,DiscountMaterialCostCrystal,39.2 +1002,Red Donguri,98,DiscountMaterialCostCrystal,39.4 +1002,Red Donguri,99,DiscountMaterialCostCrystal,39.6 +1002,Red Donguri,100,DiscountMaterialCostCrystal,40 +1003,Valkyrie,1,ReduceRequiredBlock,20 +1003,Valkyrie,2,ReduceRequiredBlock,20.15 +1003,Valkyrie,3,ReduceRequiredBlock,20.3 +1003,Valkyrie,4,ReduceRequiredBlock,20.45 +1003,Valkyrie,5,ReduceRequiredBlock,20.6 +1003,Valkyrie,6,ReduceRequiredBlock,20.75 +1003,Valkyrie,7,ReduceRequiredBlock,20.9 +1003,Valkyrie,8,ReduceRequiredBlock,21.05 +1003,Valkyrie,9,ReduceRequiredBlock,21.2 +1003,Valkyrie,10,ReduceRequiredBlock,21.35 +1003,Valkyrie,11,ReduceRequiredBlock,21.5 +1003,Valkyrie,12,ReduceRequiredBlock,21.65 +1003,Valkyrie,13,ReduceRequiredBlock,21.8 +1003,Valkyrie,14,ReduceRequiredBlock,21.95 +1003,Valkyrie,15,ReduceRequiredBlock,22.1 +1003,Valkyrie,16,ReduceRequiredBlock,22.25 +1003,Valkyrie,17,ReduceRequiredBlock,22.4 +1003,Valkyrie,18,ReduceRequiredBlock,22.55 +1003,Valkyrie,19,ReduceRequiredBlock,22.7 +1003,Valkyrie,20,ReduceRequiredBlock,22.85 +1003,Valkyrie,21,ReduceRequiredBlock,23 +1003,Valkyrie,22,ReduceRequiredBlock,23.15 +1003,Valkyrie,23,ReduceRequiredBlock,23.3 +1003,Valkyrie,24,ReduceRequiredBlock,23.45 +1003,Valkyrie,25,ReduceRequiredBlock,23.6 +1003,Valkyrie,26,ReduceRequiredBlock,23.75 +1003,Valkyrie,27,ReduceRequiredBlock,23.9 +1003,Valkyrie,28,ReduceRequiredBlock,24.05 +1003,Valkyrie,29,ReduceRequiredBlock,24.2 +1003,Valkyrie,30,ReduceRequiredBlock,24.35 +1003,Valkyrie,31,ReduceRequiredBlock,24.5 +1003,Valkyrie,32,ReduceRequiredBlock,24.65 +1003,Valkyrie,33,ReduceRequiredBlock,24.8 +1003,Valkyrie,34,ReduceRequiredBlock,24.95 +1003,Valkyrie,35,ReduceRequiredBlock,25.1 +1003,Valkyrie,36,ReduceRequiredBlock,25.25 +1003,Valkyrie,37,ReduceRequiredBlock,25.4 +1003,Valkyrie,38,ReduceRequiredBlock,25.55 +1003,Valkyrie,39,ReduceRequiredBlock,25.7 +1003,Valkyrie,40,ReduceRequiredBlock,25.85 +1003,Valkyrie,41,ReduceRequiredBlock,26 +1003,Valkyrie,42,ReduceRequiredBlock,26.15 +1003,Valkyrie,43,ReduceRequiredBlock,26.3 +1003,Valkyrie,44,ReduceRequiredBlock,26.45 +1003,Valkyrie,45,ReduceRequiredBlock,26.6 +1003,Valkyrie,46,ReduceRequiredBlock,26.75 +1003,Valkyrie,47,ReduceRequiredBlock,26.9 +1003,Valkyrie,48,ReduceRequiredBlock,27.05 +1003,Valkyrie,49,ReduceRequiredBlock,27.2 +1003,Valkyrie,50,ReduceRequiredBlock,27.35 +1003,Valkyrie,51,ReduceRequiredBlock,27.5 +1003,Valkyrie,52,ReduceRequiredBlock,27.65 +1003,Valkyrie,53,ReduceRequiredBlock,27.8 +1003,Valkyrie,54,ReduceRequiredBlock,27.95 +1003,Valkyrie,55,ReduceRequiredBlock,28.1 +1003,Valkyrie,56,ReduceRequiredBlock,28.25 +1003,Valkyrie,57,ReduceRequiredBlock,28.4 +1003,Valkyrie,58,ReduceRequiredBlock,28.55 +1003,Valkyrie,59,ReduceRequiredBlock,28.7 +1003,Valkyrie,60,ReduceRequiredBlock,28.85 +1003,Valkyrie,61,ReduceRequiredBlock,29 +1003,Valkyrie,62,ReduceRequiredBlock,29.15 +1003,Valkyrie,63,ReduceRequiredBlock,29.3 +1003,Valkyrie,64,ReduceRequiredBlock,29.45 +1003,Valkyrie,65,ReduceRequiredBlock,29.6 +1003,Valkyrie,66,ReduceRequiredBlock,29.75 +1003,Valkyrie,67,ReduceRequiredBlock,29.9 +1003,Valkyrie,68,ReduceRequiredBlock,30.05 +1003,Valkyrie,69,ReduceRequiredBlock,30.2 +1003,Valkyrie,70,ReduceRequiredBlock,30.35 +1003,Valkyrie,71,ReduceRequiredBlock,30.5 +1003,Valkyrie,72,ReduceRequiredBlock,30.65 +1003,Valkyrie,73,ReduceRequiredBlock,30.8 +1003,Valkyrie,74,ReduceRequiredBlock,30.95 +1003,Valkyrie,75,ReduceRequiredBlock,31.1 +1003,Valkyrie,76,ReduceRequiredBlock,31.25 +1003,Valkyrie,77,ReduceRequiredBlock,31.4 +1003,Valkyrie,78,ReduceRequiredBlock,31.55 +1003,Valkyrie,79,ReduceRequiredBlock,31.7 +1003,Valkyrie,80,ReduceRequiredBlock,31.85 +1003,Valkyrie,81,ReduceRequiredBlock,32 +1003,Valkyrie,82,ReduceRequiredBlock,32.15 +1003,Valkyrie,83,ReduceRequiredBlock,32.3 +1003,Valkyrie,84,ReduceRequiredBlock,32.45 +1003,Valkyrie,85,ReduceRequiredBlock,32.6 +1003,Valkyrie,86,ReduceRequiredBlock,32.75 +1003,Valkyrie,87,ReduceRequiredBlock,32.9 +1003,Valkyrie,88,ReduceRequiredBlock,33.05 +1003,Valkyrie,89,ReduceRequiredBlock,33.2 +1003,Valkyrie,90,ReduceRequiredBlock,33.35 +1003,Valkyrie,91,ReduceRequiredBlock,33.5 +1003,Valkyrie,92,ReduceRequiredBlock,33.65 +1003,Valkyrie,93,ReduceRequiredBlock,33.8 +1003,Valkyrie,94,ReduceRequiredBlock,33.95 +1003,Valkyrie,95,ReduceRequiredBlock,34.1 +1003,Valkyrie,96,ReduceRequiredBlock,34.25 +1003,Valkyrie,97,ReduceRequiredBlock,34.4 +1003,Valkyrie,98,ReduceRequiredBlock,34.55 +1003,Valkyrie,99,ReduceRequiredBlock,34.7 +1003,Valkyrie,100,ReduceRequiredBlock,35 +1004,lil fenrir,1,AdditionalOptionRate,50 +1004,lil fenrir,2,AdditionalOptionRate,51 +1004,lil fenrir,3,AdditionalOptionRate,52 +1004,lil fenrir,4,AdditionalOptionRate,53 +1004,lil fenrir,5,AdditionalOptionRate,54 +1004,lil fenrir,6,AdditionalOptionRate,55 +1004,lil fenrir,7,AdditionalOptionRate,56 +1004,lil fenrir,8,AdditionalOptionRate,57 +1004,lil fenrir,9,AdditionalOptionRate,58 +1004,lil fenrir,10,AdditionalOptionRate,59 +1004,lil fenrir,11,AdditionalOptionRate,60 +1004,lil fenrir,12,AdditionalOptionRate,61 +1004,lil fenrir,13,AdditionalOptionRate,62 +1004,lil fenrir,14,AdditionalOptionRate,63 +1004,lil fenrir,15,AdditionalOptionRate,64 +1004,lil fenrir,16,AdditionalOptionRate,65 +1004,lil fenrir,17,AdditionalOptionRate,66 +1004,lil fenrir,18,AdditionalOptionRate,67 +1004,lil fenrir,19,AdditionalOptionRate,68 +1004,lil fenrir,20,AdditionalOptionRate,69 +1004,lil fenrir,21,AdditionalOptionRate,70 +1004,lil fenrir,22,AdditionalOptionRate,71 +1004,lil fenrir,23,AdditionalOptionRate,72 +1004,lil fenrir,24,AdditionalOptionRate,73 +1004,lil fenrir,25,AdditionalOptionRate,74 +1004,lil fenrir,26,AdditionalOptionRate,75 +1004,lil fenrir,27,AdditionalOptionRate,76 +1004,lil fenrir,28,AdditionalOptionRate,77 +1004,lil fenrir,29,AdditionalOptionRate,78 +1004,lil fenrir,30,AdditionalOptionRate,79 +1004,lil fenrir,31,AdditionalOptionRate,80 +1004,lil fenrir,32,AdditionalOptionRate,81 +1004,lil fenrir,33,AdditionalOptionRate,82 +1004,lil fenrir,34,AdditionalOptionRate,83 +1004,lil fenrir,35,AdditionalOptionRate,84 +1004,lil fenrir,36,AdditionalOptionRate,85 +1004,lil fenrir,37,AdditionalOptionRate,86 +1004,lil fenrir,38,AdditionalOptionRate,87 +1004,lil fenrir,39,AdditionalOptionRate,88 +1004,lil fenrir,40,AdditionalOptionRate,89 +1004,lil fenrir,41,AdditionalOptionRate,90 +1004,lil fenrir,42,AdditionalOptionRate,91 +1004,lil fenrir,43,AdditionalOptionRate,92 +1004,lil fenrir,44,AdditionalOptionRate,93 +1004,lil fenrir,45,AdditionalOptionRate,94 +1004,lil fenrir,46,AdditionalOptionRate,95 +1004,lil fenrir,47,AdditionalOptionRate,96 +1004,lil fenrir,48,AdditionalOptionRate,97 +1004,lil fenrir,49,AdditionalOptionRate,98 +1004,lil fenrir,50,AdditionalOptionRate,99 +1004,lil fenrir,51,AdditionalOptionRate,100 +1004,lil fenrir,52,AdditionalOptionRate,101 +1004,lil fenrir,53,AdditionalOptionRate,102 +1004,lil fenrir,54,AdditionalOptionRate,103 +1004,lil fenrir,55,AdditionalOptionRate,104 +1004,lil fenrir,56,AdditionalOptionRate,105 +1004,lil fenrir,57,AdditionalOptionRate,106 +1004,lil fenrir,58,AdditionalOptionRate,107 +1004,lil fenrir,59,AdditionalOptionRate,108 +1004,lil fenrir,60,AdditionalOptionRate,109 +1004,lil fenrir,61,AdditionalOptionRate,110 +1004,lil fenrir,62,AdditionalOptionRate,111 +1004,lil fenrir,63,AdditionalOptionRate,112 +1004,lil fenrir,64,AdditionalOptionRate,113 +1004,lil fenrir,65,AdditionalOptionRate,114 +1004,lil fenrir,66,AdditionalOptionRate,115 +1004,lil fenrir,67,AdditionalOptionRate,116 +1004,lil fenrir,68,AdditionalOptionRate,117 +1004,lil fenrir,69,AdditionalOptionRate,118 +1004,lil fenrir,70,AdditionalOptionRate,119 +1004,lil fenrir,71,AdditionalOptionRate,120 +1004,lil fenrir,72,AdditionalOptionRate,121 +1004,lil fenrir,73,AdditionalOptionRate,122 +1004,lil fenrir,74,AdditionalOptionRate,123 +1004,lil fenrir,75,AdditionalOptionRate,124 +1004,lil fenrir,76,AdditionalOptionRate,125 +1004,lil fenrir,77,AdditionalOptionRate,126 +1004,lil fenrir,78,AdditionalOptionRate,127 +1004,lil fenrir,79,AdditionalOptionRate,128 +1004,lil fenrir,80,AdditionalOptionRate,129 +1004,lil fenrir,81,AdditionalOptionRate,130 +1004,lil fenrir,82,AdditionalOptionRate,131 +1004,lil fenrir,83,AdditionalOptionRate,132 +1004,lil fenrir,84,AdditionalOptionRate,133 +1004,lil fenrir,85,AdditionalOptionRate,134 +1004,lil fenrir,86,AdditionalOptionRate,135 +1004,lil fenrir,87,AdditionalOptionRate,136 +1004,lil fenrir,88,AdditionalOptionRate,137 +1004,lil fenrir,89,AdditionalOptionRate,138 +1004,lil fenrir,90,AdditionalOptionRate,139 +1004,lil fenrir,91,AdditionalOptionRate,140 +1004,lil fenrir,92,AdditionalOptionRate,141 +1004,lil fenrir,93,AdditionalOptionRate,142 +1004,lil fenrir,94,AdditionalOptionRate,143 +1004,lil fenrir,95,AdditionalOptionRate,144 +1004,lil fenrir,96,AdditionalOptionRate,145 +1004,lil fenrir,97,AdditionalOptionRate,146 +1004,lil fenrir,98,AdditionalOptionRate,147 +1004,lil fenrir,99,AdditionalOptionRate,148 +1004,lil fenrir,100,AdditionalOptionRate,150 \ No newline at end of file diff --git a/Lib9c/TableCSV/Pet/PetSheet.csv b/Lib9c/TableCSV/Pet/PetSheet.csv index c2e4a81e6a..e0f102a575 100644 --- a/Lib9c/TableCSV/Pet/PetSheet.csv +++ b/Lib9c/TableCSV/Pet/PetSheet.csv @@ -1,5 +1,5 @@ -id,grade,SoulStoneTicker,_petName -1001,1,Soulstone_1001,D:CC 블랙캣 -1002,2,Soulstone_1002,빨간 동글이 -1003,3,Soulstone_1003,빛의 발키리 -1004,4,Soulstone_1004,꼬마 펜리르 +id,_PetNameKO,_PetNameEn,grade,SoulStoneTicker +1001,D:CC 블랙캣,D:CC Blackcat,1,SOULSTONE_1001 +1002,빨간 동글이,Red Dongle,2,SOULSTONE_1002 +1003,빛의 발키리,Valkyrie of Light,3,SOULSTONE_1003 +1004,꼬마 펜리르,Lil' Fenrir,3,SOULSTONE_1004 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/CombinationEquipmentQuestSheet.csv b/Lib9c/TableCSV/Quest/CombinationEquipmentQuestSheet.csv index aa61761708..77fd0b8418 100644 --- a/Lib9c/TableCSV/Quest/CombinationEquipmentQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/CombinationEquipmentQuestSheet.csv @@ -1,21 +1,10 @@ id,goal,quest_reward_id,recipe_id 1100001,1,101,1 -1100002,1,101,2 -1100003,1,101,3 -1100004,1,101,4 1100005,1,101,5 1100006,1,102,6 -1100007,1,102,7 -1100008,1,102,8 -1100009,1,102,9 1100010,1,102,10 -1100011,1,103,11 -1100012,1,103,12 -1100013,1,103,13 1100014,1,103,14 1100015,1,103,15 -1100016,1,103,16 -1100017,1,103,17 1100018,1,103,18 1100019,1,103,19 1100020,1,103,20 @@ -29,37 +18,16 @@ id,goal,quest_reward_id,recipe_id 1100028,1,105,28 1100029,1,105,29 1100030,1,105,30 -1100031,1,105,31 -1100032,1,105,32 -1100033,1,105,33 -1100034,1,105,34 -1100035,1,105,35 -1100036,1,105,36 -1100037,1,105,37 -1100038,1,105,38 -1100039,1,105,39 -1100040,1,105,40 -1100041,1,105,41 -1100042,1,201,42 1100043,1,201,43 -1100044,1,201,44 -1100045,1,201,45 1100046,1,201,46 -1100047,1,202,47 -1100048,1,202,48 1100049,1,202,49 -1100050,1,202,50 1100051,1,202,51 -1100052,1,203,52 -1100053,1,203,53 -1100054,1,203,54 1100055,1,203,55 1100056,1,203,56 1100057,1,203,57 1100058,1,203,58 1100059,1,203,59 1100060,1,203,60 -1100061,1,203,61 1100062,1,204,62 1100063,1,204,63 1100064,1,204,64 @@ -70,80 +38,34 @@ id,goal,quest_reward_id,recipe_id 1100069,1,205,69 1100070,1,205,70 1100071,1,205,71 -1100072,1,205,72 -1100073,1,205,73 -1100074,1,205,74 -1100075,1,205,75 -1100076,1,205,76 -1100077,1,205,77 -1100078,1,205,78 -1100079,1,205,79 -1100080,1,205,80 -1100081,1,205,81 -1100082,1,205,82 -1100083,1,301,83 -1100084,1,301,84 -1100085,1,301,85 -1100086,1,301,86 1100087,1,301,87 -1100088,1,302,88 -1100089,1,302,89 -1100090,1,302,90 1100091,1,302,91 1100092,1,302,92 -1100093,1,303,93 1100094,1,303,94 -1100095,1,303,95 -1100096,1,303,96 1100097,1,303,97 -1100098,1,304,98 -1100099,1,304,99 -1100100,1,304,100 1100101,1,304,101 -1100102,1,304,102 1100103,1,305,103 1100104,1,305,104 1100105,1,305,105 1100106,1,305,106 1100107,1,305,107 -1100108,1,401,108 -1100109,1,401,109 -1100110,1,401,110 1100111,1,401,111 -1100112,1,401,112 -1100113,1,402,113 -1100114,1,402,114 -1100115,1,402,115 1100116,1,402,116 1100117,1,402,117 -1100118,1,403,118 -1100119,1,403,119 -1100120,1,403,120 1100121,1,403,121 1100122,1,403,122 1100123,1,404,123 -1100124,1,404,124 -1100125,1,404,125 -1100126,1,404,126 -1100127,1,404,127 1100128,1,405,128 1100129,1,405,129 1100130,1,405,130 1100131,1,405,131 1100132,1,405,132 1100133,1,501,133 -1100134,1,501,134 -1100135,1,501,135 -1100136,1,501,136 1100137,1,501,137 -1100138,1,502,138 1100139,1,502,139 -1100140,1,502,140 1100141,1,502,141 1100142,1,502,142 -1100143,1,503,143 1100144,1,503,144 -1100145,1,503,145 1100146,1,503,146 1100147,1,503,147 1100148,1,504,148 diff --git a/Lib9c/TableCSV/Quest/CombinationQuestSheet.csv b/Lib9c/TableCSV/Quest/CombinationQuestSheet.csv index cc0a6eb71a..491cc832ba 100644 --- a/Lib9c/TableCSV/Quest/CombinationQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/CombinationQuestSheet.csv @@ -28,4 +28,4 @@ id,goal,quest_reward_id,item_type,item_sub_type 300027,10,3,Consumable,Food 300028,20,3,Consumable,Food 300029,30,12,Consumable,Food -300030,50,12,Consumable,Food +300030,50,12,Consumable,Food \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/GoldQuestSheet.csv b/Lib9c/TableCSV/Quest/GoldQuestSheet.csv index 5b5b2f3073..1c2b2d605c 100644 --- a/Lib9c/TableCSV/Quest/GoldQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/GoldQuestSheet.csv @@ -4,4 +4,4 @@ id,goal,quest_reward_id,type 1000003,10000,15,Buy 1000004,100,19,Sell 1000005,1000,21,Sell -1000006,10000,15,Sell +1000006,10000,15,Sell \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/ItemEnhancementQuestSheet.csv b/Lib9c/TableCSV/Quest/ItemEnhancementQuestSheet.csv index 4d349dab9b..bf515ab396 100644 --- a/Lib9c/TableCSV/Quest/ItemEnhancementQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/ItemEnhancementQuestSheet.csv @@ -8,4 +8,4 @@ id,goal,quest_reward_id,grade,count 600007,9,16,4,1 600008,9,16,4,6 600009,9,16,5,1 -600010,9,16,5,6 +600010,9,16,5,6 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/ItemGradeQuestSheet.csv b/Lib9c/TableCSV/Quest/ItemGradeQuestSheet.csv index b16502b47b..49c0aef8f0 100644 --- a/Lib9c/TableCSV/Quest/ItemGradeQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/ItemGradeQuestSheet.csv @@ -3,4 +3,4 @@ id,goal,quest_reward_id,grade 800001,6,12,2 800002,6,19,3 800003,6,15,4 -800004,6,16,5 +800004,6,16,5 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/ItemTypeCollectQuestSheet.csv b/Lib9c/TableCSV/Quest/ItemTypeCollectQuestSheet.csv index fde009fdbc..45a689e821 100644 --- a/Lib9c/TableCSV/Quest/ItemTypeCollectQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/ItemTypeCollectQuestSheet.csv @@ -2,4 +2,4 @@ id,goal,quest_reward_id,item_type 900000,5,3,Material 900001,10,19,Material 900002,20,19,Material -900003,30,19,Material +900003,30,19,Material \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/MonsterQuestSheet.csv b/Lib9c/TableCSV/Quest/MonsterQuestSheet.csv index f378052f45..15f7569f18 100644 --- a/Lib9c/TableCSV/Quest/MonsterQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/MonsterQuestSheet.csv @@ -2,4 +2,4 @@ id,goal,quest_reward_id,monster_id 500001,1,17,201005 500002,1,21,202007 500003,1,15,203007 -500004,1,16,205007 +500004,1,16,205007 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/QuestItemRewardSheet.csv b/Lib9c/TableCSV/Quest/QuestItemRewardSheet.csv index 888e6ecf12..1f2fae9787 100644 --- a/Lib9c/TableCSV/Quest/QuestItemRewardSheet.csv +++ b/Lib9c/TableCSV/Quest/QuestItemRewardSheet.csv @@ -34,6 +34,7 @@ id,item_id,count 34,304003,1 36,400000,40 37,400000,80 +38,800201,20 101,303000,3 102,303001,4 103,303002,6 @@ -58,4 +59,4 @@ id,item_id,count 502,303401,8 503,303402,10 504,303403,12 -505,303404,14 +505,303404,14 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/QuestRewardSheet.csv b/Lib9c/TableCSV/Quest/QuestRewardSheet.csv index f0006b8e1a..f17b8d0d0e 100644 --- a/Lib9c/TableCSV/Quest/QuestRewardSheet.csv +++ b/Lib9c/TableCSV/Quest/QuestRewardSheet.csv @@ -52,6 +52,8 @@ id,reward_id 38,36 39,37 39,21 +40,36 +40,38 101,101 102,102 103,103 @@ -76,4 +78,4 @@ id,reward_id 502,502 503,503 504,504 -505,505 +505,505 \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/TradeQuestSheet.csv b/Lib9c/TableCSV/Quest/TradeQuestSheet.csv index 71d7e9855e..f298ec7948 100644 --- a/Lib9c/TableCSV/Quest/TradeQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/TradeQuestSheet.csv @@ -6,4 +6,4 @@ id,goal,quest_reward_id,type 400005,1,13,Buy 400006,10,13,Buy 400007,50,15,Buy -400008,100,16,Buy +400008,100,16,Buy \ No newline at end of file diff --git a/Lib9c/TableCSV/Quest/WorldQuestSheet.csv b/Lib9c/TableCSV/Quest/WorldQuestSheet.csv index f141788596..ea4d511fcb 100644 --- a/Lib9c/TableCSV/Quest/WorldQuestSheet.csv +++ b/Lib9c/TableCSV/Quest/WorldQuestSheet.csv @@ -3,7 +3,7 @@ id,goal,quest_reward_id 100002,2,38 100003,3,38 100004,4,28 -100005,5,38 +100005,5,40 100006,6,201 100007,7,38 100008,8,39 diff --git a/Lib9c/TableCSV/RedeemRewardSheet.csv b/Lib9c/TableCSV/RedeemRewardSheet.csv index 923ac80c0d..3e5a416eaf 100644 --- a/Lib9c/TableCSV/RedeemRewardSheet.csv +++ b/Lib9c/TableCSV/RedeemRewardSheet.csv @@ -37,3 +37,7 @@ id,type,qty,item_id 22,Item,1,49900008 23,Item,1,40100010 24,Item,1,49900009 +25,Item,1,40100011 +26,Item,1,49900010 +27,Item,1,40100013 +28,Item,1,40100014 \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/BuffSheet.csv b/Lib9c/TableCSV/Skill/BuffSheet.csv index 95c73b3a4a..108d332bdd 100644 --- a/Lib9c/TableCSV/Skill/BuffSheet.csv +++ b/Lib9c/TableCSV/Skill/BuffSheet.csv @@ -76,4 +76,4 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,ic 306009,306000,속도 강화 (18),100,150,Self,SPD,Percentage,18,icon_buff_plus_speed 306010,306000,SS 올스탯,100,150,Self,SPD,Percentage,50,icon_buff_plus_speed 306011,306000,S 속도1,100,150,Self,SPD,Percentage,60,icon_buff_plus_speed -306012,306000,SS 속도,100,150,Self,SPD,Percentage,90,icon_buff_plus_speed +306012,306000,SS 속도,100,150,Self,SPD,Percentage,90,icon_buff_plus_speed \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/SkillBuffSheet.csv b/Lib9c/TableCSV/Skill/SkillBuffSheet.csv index d5e83589ef..3eefdcbc0d 100644 --- a/Lib9c/TableCSV/Skill/SkillBuffSheet.csv +++ b/Lib9c/TableCSV/Skill/SkillBuffSheet.csv @@ -209,7 +209,12 @@ skill_id,buff_id 700001,701000 700002,702000 700003,703000 -800001,801001 -800001,801002 -800002,802001 -800002,802002 +210011,102004 +210011,203003 +230005,104003 +230005,204002 +230006,104004 +230006,204003 +230007,104005 +230007,204003 +240006,105003 \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/SkillSheet.csv b/Lib9c/TableCSV/Skill/SkillSheet.csv index 097c21336e..3388ff3b36 100644 --- a/Lib9c/TableCSV/Skill/SkillSheet.csv +++ b/Lib9c/TableCSV/Skill/SkillSheet.csv @@ -45,6 +45,7 @@ _210001,공격 강화(전체),Normal,Buff,AttackBuff,Ally,1,1 // 미구현 210008,ATK All Down (ATK),Normal,Debuff,AttackBuff,Enemies,1,14 210009,ATK All Down (DEF),Normal,Debuff,AttackBuff,Enemies,1,14 210010,ATK Down (HP),Normal,Debuff,AttackBuff,Enemy,1,10 +210011,Double edged sword,Normal,Buff,AttackBuff,Self,1,10 220000,방어 강화,Normal,Buff,DefenseBuff,Self,1,25 _220001,방어 강화(전체),Normal,Buff,DefenseBuff,Ally,1,1 // 미구현 220002,방어 약화,Normal,Debuff,DefenseBuff,Enemy,1,10 @@ -59,12 +60,16 @@ _230001,치명 증가(전체),Normal,Buff,CriticalBuff,Ally,1,1 // 미구현 230002,치명 감소,Normal,Debuff,CriticalBuff,Enemy,1,10 230003,치명 감소(전체),Normal,Debuff,CriticalBuff,Enemies,1,10 230004,치명 증가,Normal,Buff,CriticalBuff,Self,1,10 +230005,Frenzied Lv1,Normal,Buff,CriticalBuff,Self,1,10 +230006,Frenzied Lv2,Normal,Buff,CriticalBuff,Self,1,10 +230007,Frenzied Lv3,Normal,Buff,CriticalBuff,Self,1,10 240000,명중 증가,Normal,Buff,HitBuff,Self,1,25 _240001,명중 증가(전체),Normal,Buff,HitBuff,Ally,1,1 // 미구현 240002,명중 감소,Normal,Debuff,HitBuff,Enemy,1,10 240003,명중 감소(전체),Normal,Debuff,HitBuff,Enemies,1,10 240004,명중 증가,Normal,Buff,HitBuff,Self,1,10 240005,HIT Down (SPD),Normal,Debuff,HitBuff,Enemy,1,10 +240006,명중 증가(아우라),Normal,Buff,HitBuff,Self,1,10 250000,속도 증가,Normal,Buff,SpeedBuff,Self,1,25 _250001,속도 증가(전체),Normal,Buff,SpeedBuff,Ally,1,1 // 미구현 250002,속도 감소,Normal,Debuff,SpeedBuff,Enemy,1,10 @@ -159,6 +164,4 @@ _250001,속도 증가(전체),Normal,Buff,SpeedBuff,Ally,1,1 // 미구현 600001,출혈,Normal,Debuff,Buff,Enemy,1,15 700001,피해 감소 (고정),Normal,Buff,DamageReductionBuff,Self,1,15 700002,피해 감소 (비율),Normal,Buff,DamageReductionBuff,Self,1,15 -700003,치명 데미지 증가,Normal,Buff,CriticalDamageBuff,Self,1,15 -800001,양날의 검,Normal,Buff,Buff,Self,1,10 -800002,기선제압,Normal,Buff,Buff,Self,1,10 +700003,치명 데미지 증가,Normal,Buff,CriticalDamageBuff,Self,1,15 \ No newline at end of file diff --git a/Lib9c/TableCSV/Skill/StatBuffSheet.csv b/Lib9c/TableCSV/Skill/StatBuffSheet.csv index ef1868b91e..acc71da9f0 100644 --- a/Lib9c/TableCSV/Skill/StatBuffSheet.csv +++ b/Lib9c/TableCSV/Skill/StatBuffSheet.csv @@ -5,6 +5,7 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 102001,102000,공격 강화,100,25,Self,ATK,Percentage,50,true 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 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 @@ -12,9 +13,13 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 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 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 +105003,105003,회피증가 (아우라),100,20,Self,HIT,Percentage,0,true 106000,106000,속도 증가,20,10,Self,SPD,Percentage,50,true 106001,106000,속도 증가,100,25,Self,SPD,Percentage,75,true 106002,106000,속도 증가,100,10,Self,SPD,Percentage,25,true @@ -26,7 +31,10 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 202003,202000,ATK ALL Down (Stat conversion),100,6,Enemies,ATK,Add,0,true 203001,203000,방어 약화,100,10,Enemy,DEF,Percentage,-25,true 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 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 206001,206000,속도 감소,100,10,Enemy,SPD,Percentage,-25,true @@ -112,8 +120,4 @@ id,group,_name,chance,duration,target_type,stat_type,modify_type,modify_value,is 504011,504011,Serimnir Furious Enemy CDMG,100,8,Enemy,CDMG,Add,10000,true 701000,701000,DRV (Rune),100,0,Self,DRV,Add,0,true 702000,701000,DRR (Rune),100,0,Self,DRR,Add,0,true -703000,703000,CDMG (Rune),100,0,Self,CDMG,Add,0,true -801001,801001,양날의 검 ATK,100,20,Self,ATK,Percentage,30,true -801002,801002,양날의 검 DEF,100,20,Self,DEF,Percentage,-20,false -802001,802001,기선제압 CRI(Self),100,20,Self,CRI,Percentage,20,true -802002,802002,기선제압 CRI(Enemy),100,20,Enemies,CRI,Percentage,-50,false +703000,703000,CDMG (Rune),100,0,Self,CDMG,Add,0,true \ No newline at end of file diff --git a/Lib9c/TableCSV/Stake/StakePolicySheet.csv b/Lib9c/TableCSV/Stake/StakePolicySheet.csv index f80402082f..cd666c04d5 100644 --- a/Lib9c/TableCSV/Stake/StakePolicySheet.csv +++ b/Lib9c/TableCSV/Stake/StakePolicySheet.csv @@ -1,5 +1,5 @@ attr_name,value -StakeRegularFixedRewardSheet,StakeRegularFixedRewardSheet_V5 +StakeRegularFixedRewardSheet,StakeRegularFixedRewardSheet_V2 StakeRegularRewardSheet,StakeRegularRewardSheet_V5 RewardInterval,50400 -LockupInterval,201600 +LockupInterval,201600 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeAchievementRewardSheet.csv b/Lib9c/TableCSV/StakeAchievementRewardSheet.csv index 37e2562915..248a3844bd 100644 --- a/Lib9c/TableCSV/StakeAchievementRewardSheet.csv +++ b/Lib9c/TableCSV/StakeAchievementRewardSheet.csv @@ -1,17 +1,17 @@ level,required_gold,required_block_index,item_id,quantity -0,10,50400,400000,80 -0,10,50400,500000,1 -0,10,151200,400000,80 -0,10,151200,500000,1 -0,10,302400,400000,80 -0,10,302400,500000,1 -0,10,604800,400000,80 -0,10,604800,500000,1 -1,100,50400,400000,80 -1,100,50400,500000,1 -1,100,151200,400000,80 -1,100,151200,500000,1 -1,100,302400,400000,80 -1,100,302400,500000,1 -1,100,604800,400000,80 -1,100,604800,500000,1 +0,10,50400,400000,0 +0,10,50400,500000,0 +0,10,151200,400000,0 +0,10,151200,500000,0 +0,10,302400,400000,0 +0,10,302400,500000,0 +0,10,604800,400000,0 +0,10,604800,500000,0 +1,100,50400,400000,0 +1,100,50400,500000,0 +1,100,151200,400000,0 +1,100,151200,500000,0 +1,100,302400,400000,0 +1,100,302400,500000,0 +1,100,604800,400000,0 +1,100,604800,500000,0 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeActionPointCoefficientSheet.csv b/Lib9c/TableCSV/StakeActionPointCoefficientSheet.csv index 6890791227..0010b296a0 100644 --- a/Lib9c/TableCSV/StakeActionPointCoefficientSheet.csv +++ b/Lib9c/TableCSV/StakeActionPointCoefficientSheet.csv @@ -4,3 +4,5 @@ level,required_gold,coefficient 3,5000,80 4,50000,80 5,500000,60 +6,5000000,60 +7,10000000,60 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V1.csv b/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V1.csv new file mode 100644 index 0000000000..3aac3932fb --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V1.csv @@ -0,0 +1,6 @@ +level,required_gold,item_id,count +1,50,500000,1 +2,500,500000,2 +3,5000,500000,2 +4,50000,500000,2 +5,500000,500000,2 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V2.csv b/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V2.csv new file mode 100644 index 0000000000..c67d8504ca --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularFixedRewardSheet_V2.csv @@ -0,0 +1,8 @@ +level,required_gold,item_id,count +1,50,500000,1 +2,500,500000,2 +3,5000,500000,2 +4,50000,500000,2 +5,500000,500000,2 +6,5000000,500000,2 +7,10000000,500000,2 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularRewardSheet_V1.csv b/Lib9c/TableCSV/StakeRegularRewardSheet_V1.csv new file mode 100644 index 0000000000..c282b780f7 --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularRewardSheet_V1.csv @@ -0,0 +1,11 @@ +level,required_gold,item_id,rate +1,50,400000,10 +1,50,500000,800 +2,500,400000,8 +2,500,500000,800 +3,5000,400000,5 +3,5000,500000,800 +4,50000,400000,5 +4,50000,500000,800 +5,500000,400000,5 +5,500000,500000,800 \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularRewardSheet_V2.csv b/Lib9c/TableCSV/StakeRegularRewardSheet_V2.csv new file mode 100644 index 0000000000..959a69aeb9 --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularRewardSheet_V2.csv @@ -0,0 +1,16 @@ +level,required_gold,item_id,rate,type +1,50,400000,10,Item +1,50,500000,800,Item +1,50,20001,6000,Rune +2,500,400000,8,Item +2,500,500000,800,Item +2,500,20001,6000,Rune +3,5000,400000,5,Item +3,5000,500000,800,Item +3,5000,20001,6000,Rune +4,50000,400000,5,Item +4,50000,500000,800,Item +4,50000,20001,6000,Rune +5,500000,400000,5,Item +5,500000,500000,800,Item +5,500000,20001,6000,Rune \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularRewardSheet_V3.csv b/Lib9c/TableCSV/StakeRegularRewardSheet_V3.csv new file mode 100644 index 0000000000..3e2405db9b --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularRewardSheet_V3.csv @@ -0,0 +1,25 @@ +level,required_gold,item_id,rate,type +1,50,400000,10,Item +1,50,500000,800,Item +1,50,20001,6000,Rune +2,500,400000,4,Item +2,500,500000,600,Item +2,500,20001,6000,Rune +3,5000,400000,2,Item +3,5000,500000,400,Item +3,5000,20001,6000,Rune +4,50000,400000,2,Item +4,50000,500000,400,Item +4,50000,20001,6000,Rune +5,500000,400000,2,Item +5,500000,500000,400,Item +5,500000,20001,6000,Rune +6,5000000,400000,2,Item +6,5000000,500000,400,Item +6,5000000,20001,6000,Rune +6,5000000,800201,50,Item +7,10000000,400000,2,Item +7,10000000,500000,400,Item +7,10000000,20001,6000,Rune +7,10000000,600201,50,Item +7,10000000,800201,50,Item \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularRewardSheet_V4.csv b/Lib9c/TableCSV/StakeRegularRewardSheet_V4.csv new file mode 100644 index 0000000000..60f44e3611 --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularRewardSheet_V4.csv @@ -0,0 +1,26 @@ +level,required_gold,item_id,rate,type,currency_ticker +1,50,400000,10,Item, +1,50,500000,800,Item, +1,50,20001,6000,Rune, +2,500,400000,4,Item, +2,500,500000,600,Item, +2,500,20001,6000,Rune, +3,5000,400000,2,Item, +3,5000,500000,400,Item, +3,5000,20001,6000,Rune, +4,50000,400000,2,Item, +4,50000,500000,400,Item, +4,50000,20001,6000,Rune, +5,500000,400000,2,Item, +5,500000,500000,400,Item, +5,500000,20001,6000,Rune, +6,5000000,400000,2,Item, +6,5000000,500000,400,Item, +6,5000000,20001,6000,Rune, +6,5000000,800201,50,Item, +7,10000000,400000,2,Item, +7,10000000,500000,400,Item, +7,10000000,20001,6000,Rune, +7,10000000,600201,50,Item, +7,10000000,800201,50,Item, +7,10000000,,100,Currency,GARAGE \ No newline at end of file diff --git a/Lib9c/TableCSV/StakeRegularRewardSheet_V5.csv b/Lib9c/TableCSV/StakeRegularRewardSheet_V5.csv new file mode 100644 index 0000000000..0203d2cf0c --- /dev/null +++ b/Lib9c/TableCSV/StakeRegularRewardSheet_V5.csv @@ -0,0 +1,32 @@ +level,required_gold,item_id,rate,type,currency_ticker,currency_decimal_places,decimal_rate +1,50,400000,,Item,,,10 +1,50,500000,,Item,,,800 +1,50,20001,,Rune,,,6000 +2,500,400000,,Item,,,4 +2,500,500000,,Item,,,600 +2,500,20001,,Rune,,,6000 +2,500,,,Currency,CRYSTAL,18,0.1 +3,5000,400000,,Item,,,2 +3,5000,500000,,Item,,,400 +3,5000,20001,,Rune,,,6000 +3,5000,,,Currency,CRYSTAL,18,0.1 +4,50000,400000,,Item,,,2 +4,50000,500000,,Item,,,400 +4,50000,20001,,Rune,,,6000 +4,50000,,,Currency,CRYSTAL,18,0.1 +5,500000,400000,,Item,,,1 +5,500000,500000,,Item,,,200 +5,500000,20001,,Rune,,,3000 +5,500000,,,Currency,CRYSTAL,18,0.05 +6,5000000,400000,,Item,,,1 +6,5000000,500000,,Item,,,200 +6,5000000,20001,,Rune,,,3000 +6,5000000,800201,,Item,,,100 +6,5000000,,,Currency,CRYSTAL,18,0.05 +7,10000000,400000,,Item,,,0.4 +7,10000000,500000,,Item,,,80 +7,10000000,20001,,Rune,,,1200 +7,10000000,600201,,Item,,,5 +7,10000000,800201,,Item,,,1 +7,10000000,,,Currency,GARAGE,18,100 +7,10000000,,,Currency,CRYSTAL,18,0.01 \ No newline at end of file diff --git a/Lib9c/TableCSV/Summon/SummonSheet.csv b/Lib9c/TableCSV/Summon/SummonSheet.csv index a50db806e4..ce04ab7dc5 100644 --- a/Lib9c/TableCSV/Summon/SummonSheet.csv +++ b/Lib9c/TableCSV/Summon/SummonSheet.csv @@ -1,3 +1,3 @@ groupID,cost_material,cost_material_count,cost_ncg,recipe1ID,recipe1ratio,recipe2ID,recipe2ratio,recipe3ID,recipe3ratio,recipe4ID,recipe4ratio,recipe5ID,recipe5ratio,recipe6ID,recipe6ratio -10001,600201,2,0,171,70,172,29,173,1,,,,,, -10002,600202,2,0,174,50,175,30,176,17,177,3,,,, +10001,800201,10,0,171,70,172,29,173,1,,,,,, +10002,600201,20,0,174,6500,175,2940,176,510,177,45,178,5,, \ No newline at end of file diff --git a/Lib9c/TableCSV/WeeklyArenaRewardSheet.csv b/Lib9c/TableCSV/WeeklyArenaRewardSheet.csv index 3f69658cb6..66ccb0eb48 100644 --- a/Lib9c/TableCSV/WeeklyArenaRewardSheet.csv +++ b/Lib9c/TableCSV/WeeklyArenaRewardSheet.csv @@ -12,22 +12,21 @@ id,item_id,ratio,min,max,required_level 11,302001,0.03,1,1,120 12,302002,0.02,1,1,120 13,302010,0.5,2,3,160 -14,302011,0.24,2,2,200 -15,306056,0.3,1,1,200 -16,302012,0.3,2,4,210 -17,302014,0.4,1,2,210 -18,302015,0.4,1,2,210 -19,302016,0.15,1,2,210 -20,302002,0.04,1,2,210 -21,302017,0.3,1,2,230 -22,302018,0.35,1,1,255 -23,302019,0.4,1,2,265 -24,302020,0.4,1,2,265 -25,302021,0.3,1,2,285 -26,302022,0.3,1,1,305 -27,302013,0.4,1,2,265 -28,302023,0.4,1,2,315 -29,302024,0.4,1,2,315 -30,302025,0.4,1,2,335 -31,302026,0.3,1,2,335 -32,302027,0.3,1,1,355 \ No newline at end of file +14,302011,0.5,2,2,200 +15,302012,0.6,2,4,210 +16,302014,0.7,1,2,210 +17,302015,0.7,1,2,210 +18,302016,0.3,1,2,210 +19,302002,0.1,1,2,210 +20,302017,0.6,1,2,230 +21,302018,1.2,1,1,255 +22,302019,1.5,1,2,265 +23,302020,1.5,1,2,265 +24,302021,1.2,1,2,285 +25,302022,1.2,1,1,305 +26,302013,1.5,1,2,265 +27,302023,1.5,1,2,315 +28,302024,1.5,1,2,315 +29,302025,1.5,1,2,315 +30,302026,1.2,1,2,335 +31,302027,1.2,1,1,355 \ No newline at end of file diff --git a/Lib9c/TableCSV/WorldAndStage/MimisbrunnrSheet.csv b/Lib9c/TableCSV/WorldAndStage/MimisbrunnrSheet.csv index bfbc8c6de8..6b06c620c3 100644 --- a/Lib9c/TableCSV/WorldAndStage/MimisbrunnrSheet.csv +++ b/Lib9c/TableCSV/WorldAndStage/MimisbrunnrSheet.csv @@ -18,4 +18,4 @@ id,elemental_type_1,elemental_type_2,elemental_type_3,elemental_type_4,elemental 10000017,Fire,,,, 10000018,Fire,,,, 10000019,Fire,,,, -10000020,Fire,,,, +10000020,Fire,,,, \ No newline at end of file diff --git a/Lib9c/TableCSV/WorldAndStage/StageSheet.csv b/Lib9c/TableCSV/WorldAndStage/StageSheet.csv index 56c7398cce..0cfdfaa834 100644 --- a/Lib9c/TableCSV/WorldAndStage/StageSheet.csv +++ b/Lib9c/TableCSV/WorldAndStage/StageSheet.csv @@ -1,254 +1,254 @@ id,cost_ap,turn_limit,hp_additional,atk_additional,def_additional,cri_additional,hit_additional,spd_additional,background,bgm,item1,item1_ratio,item1_min,item1_max,item2,item2_ratio,item2_min,item2_max,item3,item3_ratio,item3_min,item3_max,item4,item4_ratio,item4_min,item4_max,item5,item5_ratio,item5_min,item5_max,item6,item6_ratio,item6_min,item6_max,item7,item7_ratio,item7_min,item7_max,item8,item8_ratio,item8_min,item8_max,item9,item9_ratio,item9_min,item9_max,item10,item10_ratio,item10_min,item10_max,min_drop,max_drop -1,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0 -2,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -3,5,150,4,4,4,0,4,4,chapter_01_02,bgm_yggdrasil_02,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +1,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +2,5,150,0,0,0,0,0,0,chapter_01_02,bgm_yggdrasil_02,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +3,5,150,4,4,4,0,4,4,chapter_01_03,bgm_yggdrasil_03,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 4,5,150,4,4,4,0,4,4,chapter_01_01,bgm_yggdrasil_01,303000,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -5,5,150,4,4,4,0,4,4,chapter_01_01,bgm_yggdrasil_01,303100,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +5,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303100,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 6,5,150,0,0,0,0,0,0,chapter_01_02,bgm_yggdrasil_02,303100,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -7,5,150,16,16,16,0,16,16,chapter_01_01,bgm_yggdrasil_01,303000,0.5,1,1,303100,0.5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -8,5,150,21,21,21,0,21,21,chapter_01_02,bgm_yggdrasil_02,303000,0.5,1,1,303100,0.5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -9,5,150,18,18,18,0,18,18,chapter_01_01,bgm_yggdrasil_01,303200,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -10,5,150,23,23,23,0,23,23,chapter_01_03,bgm_yggdrasil_03,303000,0.1,1,1,303100,0.1,1,1,303200,0.1,1,1,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -11,5,150,29,29,29,0,29,29,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -12,5,150,37,37,37,0,37,37,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -13,5,150,34,34,34,0,34,34,chapter_01_02,bgm_yggdrasil_02,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -14,5,150,45,45,45,0,45,45,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -15,5,150,45,45,45,0,45,45,chapter_01_01,bgm_yggdrasil_01,303300,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -16,5,150,36,36,36,0,36,36,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -17,5,150,46,46,46,0,46,46,chapter_01_01,bgm_yggdrasil_01,303400,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -18,5,150,43,43,43,0,43,43,chapter_01_02,bgm_yggdrasil_02,303000,0.1,1,2,303100,0.1,1,2,303300,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +7,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303000,0.5,1,1,303100,0.5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +8,5,150,0,0,0,0,0,0,chapter_01_02,bgm_yggdrasil_02,303000,0.5,1,1,303100,0.5,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +9,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303200,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +10,5,150,0,0,0,0,0,0,chapter_01_03,bgm_yggdrasil_03,303000,0.1,1,1,303100,0.1,1,1,303200,0.1,1,1,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +11,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +12,5,150,0,0,0,0,0,0,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +13,5,150,0,0,0,0,0,0,chapter_01_02,bgm_yggdrasil_02,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +14,5,150,25,25,25,0,25,25,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +15,5,150,25,25,25,0,25,25,chapter_01_01,bgm_yggdrasil_01,303300,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +16,5,150,20,10,20,0,36,36,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +17,5,150,25,25,25,0,25,25,chapter_01_01,bgm_yggdrasil_01,303400,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +18,5,150,30,43,30,0,43,43,chapter_01_02,bgm_yggdrasil_02,303000,0.1,1,2,303100,0.1,1,2,303300,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 19,5,150,18,18,18,0,18,18,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -20,5,150,60,60,60,0,60,60,chapter_01_03,bgm_yggdrasil_03,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -21,5,150,71,71,71,0,71,71,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -22,5,150,62,62,62,0,62,62,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -23,5,150,58,58,58,0,58,58,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -24,5,150,70,70,70,0,70,70,chapter_01_01,bgm_yggdrasil_01,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -25,5,150,80,80,80,0,80,80,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303300,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -26,5,150,74,74,74,0,74,74,chapter_01_02,bgm_yggdrasil_02,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -27,5,150,64,64,64,0,64,64,chapter_01_01,bgm_yggdrasil_01,303001,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +20,5,150,10,10,10,0,10,10,chapter_01_03,bgm_yggdrasil_03,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +21,5,150,10,10,10,0,10,10,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +22,5,150,10,10,10,0,10,10,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +23,5,150,10,10,10,0,10,10,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +24,5,150,10,10,10,0,10,10,chapter_01_01,bgm_yggdrasil_01,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +25,5,150,10,10,10,0,10,10,chapter_01_01,bgm_yggdrasil_01,303000,0.1,1,2,303100,0.1,1,2,303300,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +26,5,150,10,10,10,0,10,10,chapter_01_02,bgm_yggdrasil_02,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +27,5,150,10,10,10,0,10,10,chapter_01_01,bgm_yggdrasil_01,303001,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 28,5,150,57,57,57,0,57,57,chapter_01_02,bgm_yggdrasil_02,303001,0.1,1,2,303200,0.1,1,2,303400,0.1,1,2,306000,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -29,5,150,58,58,58,0,58,58,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -30,5,150,49,49,49,0,49,49,chapter_01_03,bgm_yggdrasil_03,303100,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -31,5,150,80,80,80,0,80,80,chapter_01_01,bgm_yggdrasil_01,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -32,5,150,84,84,84,0,84,84,chapter_01_01,bgm_yggdrasil_01,303100,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -33,5,150,76,76,76,0,76,76,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -34,5,150,92,92,92,0,92,92,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303100,0.1,1,2,303400,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -35,5,150,108,108,108,0,108,108,chapter_01_01,bgm_yggdrasil_01,303101,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -36,5,150,123,123,123,0,123,123,chapter_01_02,bgm_yggdrasil_02,303101,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -37,5,150,85,85,85,0,85,85,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303101,0.1,1,2,303300,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -38,5,150,101,101,101,0,101,101,chapter_01_02,bgm_yggdrasil_02,303001,0.1,1,2,303200,0.1,1,2,303400,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -39,5,150,92,92,92,0,92,92,chapter_01_01,bgm_yggdrasil_01,303101,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -40,5,150,94,94,94,0,94,94,chapter_01_03,bgm_yggdrasil_03,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306024,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 -41,5,150,114,114,114,0,114,114,chapter_01_01,bgm_yggdrasil_01,303201,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -42,5,150,133,133,133,0,133,133,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306023,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -43,5,150,96,96,96,0,96,96,chapter_01_02,bgm_yggdrasil_02,303201,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -44,5,150,118,118,118,0,118,118,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -45,5,150,117,117,117,0,117,117,chapter_01_01,bgm_yggdrasil_01,303101,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -46,5,150,96,96,96,0,96,96,chapter_01_02,bgm_yggdrasil_02,303101,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306023,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -47,5,150,66,66,66,0,66,66,chapter_01_01,bgm_yggdrasil_01,303301,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -48,5,150,36,36,36,0,36,36,chapter_01_02,bgm_yggdrasil_02,303001,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -49,5,150,63,63,63,0,63,63,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306024,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -50,5,150,77,77,77,0,77,77,chapter_01_03,bgm_yggdrasil_03,303101,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -51,5,150,137,137,137,0,137,137,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306009,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -52,5,150,120,120,120,0,120,120,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303201,0.1,1,2,303400,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -53,5,150,102,102,102,0,102,102,chapter_02_02,bgm_alfheim_02,303401,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 -54,5,150,104,104,104,0,104,104,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306011,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -55,5,150,120,120,120,0,120,120,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -56,5,150,112,112,112,0,112,112,chapter_02_02,bgm_alfheim_02,303001,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306009,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -57,5,150,123,123,123,0,123,123,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -58,5,150,118,118,118,0,118,118,chapter_02_02,bgm_alfheim_02,303201,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -59,5,150,112,112,112,0,112,112,chapter_02_01,bgm_alfheim_01,303100,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306011,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -60,5,150,142,142,142,0,142,142,chapter_02_03,bgm_alfheim_03,303100,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -61,5,150,185,185,185,0,185,185,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303100,0.1,1,2,303201,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -62,5,150,126,126,126,0,126,126,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -63,5,150,170,170,170,0,170,170,chapter_02_02,bgm_alfheim_02,303002,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -64,5,150,155,155,155,0,155,155,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -65,5,150,167,167,167,0,167,167,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -66,5,150,142,142,142,0,142,142,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -67,5,150,166,166,166,0,166,166,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -68,5,150,198,198,198,0,198,198,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -69,5,150,181,181,181,0,181,181,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -70,5,150,193,193,193,0,193,193,chapter_02_03,bgm_alfheim_03,306040,0.97,2,2,306041,0.01,1,1,306044,0.01,1,1,306043,0.01,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -71,5,150,190,190,190,0,190,190,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -72,5,150,204,204,204,0,204,204,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303201,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -73,5,150,171,171,171,0,171,171,chapter_02_02,bgm_alfheim_02,303101,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306002,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -74,5,150,193,193,193,0,193,193,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -75,5,150,194,194,194,0,194,194,chapter_02_01,bgm_alfheim_01,303102,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -76,5,150,185,185,185,0,185,185,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306001,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -77,5,150,188,188,188,0,188,188,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -78,5,150,200,200,200,0,200,200,chapter_02_02,bgm_alfheim_02,303201,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -79,5,150,188,188,188,0,188,188,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306000,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -80,5,150,194,194,194,0,194,194,chapter_02_03,bgm_alfheim_03,303102,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -81,5,150,202,202,202,0,202,202,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303300,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -82,5,150,174,174,174,0,174,174,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -83,5,150,175,175,175,0,175,175,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -84,5,150,175,175,175,0,175,175,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -85,5,150,137,137,137,0,137,137,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303201,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -86,5,150,174,174,174,0,174,174,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -87,5,150,199,199,199,0,199,199,chapter_02_01,bgm_alfheim_01,303202,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -88,5,150,200,200,200,0,200,200,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -89,5,150,224,224,224,0,224,224,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -90,5,150,202,202,202,0,202,202,chapter_02_03,bgm_alfheim_03,303102,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -91,5,150,216,216,216,0,216,216,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -92,5,150,190,190,190,0,190,190,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -93,5,150,196,196,196,0,196,196,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303202,0.1,1,2,303400,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -94,5,150,178,178,178,0,178,178,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -95,5,150,194,194,194,0,194,194,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -96,5,150,180,180,180,0,180,180,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303202,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -97,5,150,152,152,152,0,152,152,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -98,5,150,158,158,158,0,158,158,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -99,5,150,166,166,166,0,166,166,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -100,5,150,153,153,153,0,153,153,chapter_02_03,bgm_alfheim_03,303000,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -101,5,150,285,204,204,0,204,204,chapter_03_01,bgm_svartalfheim_01,303000,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -102,5,150,287,205,205,0,205,205,chapter_03_01,bgm_svartalfheim_01,303302,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -103,5,150,295,202,202,0,202,202,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -104,5,150,245,172,172,0,172,172,chapter_03_01,bgm_svartalfheim_01,303202,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -105,5,150,284,202,202,0,202,202,chapter_03_01,bgm_svartalfheim_01,303202,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -106,5,150,266,185,185,0,185,185,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -107,5,150,286,204,204,0,204,204,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -108,5,150,305,219,219,0,219,219,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -109,5,150,237,163,163,0,163,163,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -110,5,150,264,181,181,0,181,181,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -111,5,150,221,151,151,0,151,151,chapter_03_01,bgm_svartalfheim_01,303100,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -112,5,150,222,156,156,0,156,156,chapter_03_01,bgm_svartalfheim_01,303100,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -113,5,150,236,164,164,0,164,164,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -114,5,150,251,178,178,0,178,178,chapter_03_01,bgm_svartalfheim_01,303001,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -115,5,150,270,192,192,0,192,192,chapter_03_01,bgm_svartalfheim_01,303001,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -116,5,150,291,203,203,0,203,203,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -117,5,150,285,201,201,0,201,201,chapter_03_01,bgm_svartalfheim_01,303402,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -118,5,150,331,236,236,0,236,236,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -119,5,150,317,228,228,0,228,228,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -120,5,150,279,198,198,0,198,198,chapter_03_03,bgm_svartalfheim_03,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -121,5,150,363,260,260,0,260,260,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303202,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -122,5,150,374,266,266,0,266,266,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -123,5,150,339,241,241,0,241,241,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -124,5,150,372,266,266,0,266,266,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -125,5,150,351,251,251,0,251,251,chapter_03_01,bgm_svartalfheim_01,306040,0.96,2,2,306041,0.01,1,1,306044,0.01,1,1,306043,0.01,1,1,306042,0.01,1,1,,,,,,,,,,,,,,,,,,,,,1,2 -126,5,150,313,212,212,0,212,212,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303101,0.1,1,2,303402,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -127,5,150,314,218,218,0,218,218,chapter_03_01,bgm_svartalfheim_01,303101,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -128,5,150,315,220,220,0,220,220,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -129,5,150,320,230,230,0,230,230,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -130,5,150,333,234,234,0,234,234,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -131,5,150,328,231,231,0,231,231,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -132,5,150,324,224,224,0,224,224,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -133,5,150,330,232,232,0,232,232,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -134,5,150,380,271,271,0,271,271,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -135,5,150,329,224,224,0,224,224,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306028,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -136,5,150,365,259,259,0,259,259,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -137,5,150,379,270,270,0,270,270,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -138,5,150,280,187,187,0,187,187,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303200,0.1,1,2,303302,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -139,5,150,373,266,266,0,266,266,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303200,0.1,1,2,303302,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -140,5,150,357,250,250,0,250,250,chapter_03_03,bgm_svartalfheim_03,303202,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -141,5,150,404,290,290,0,290,290,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -142,5,150,351,245,245,0,245,245,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306051,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -143,5,150,354,248,248,0,248,248,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -144,5,150,332,232,232,0,232,232,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -145,5,150,344,245,245,0,245,245,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -146,5,150,351,250,250,0,250,250,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -147,5,150,304,213,213,0,213,213,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -148,5,150,246,167,167,0,167,167,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -149,5,150,250,171,171,0,171,171,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -150,5,150,250,173,173,0,173,173,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -151,5,150,445,317,317,0,381,317,chapter_04_01,bgm_asgard_01,306035,0.92,2,2,306036,0.02,1,1,306039,0.02,1,1,306038,0.02,1,1,306037,0.02,1,1,,,,,,,,,,,,,,,,,,,,,1,2 -152,5,150,415,296,296,0,355,296,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -153,5,150,447,319,319,0,383,319,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -154,5,150,391,273,273,0,331,273,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303300,0.1,1,2,303402,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -155,5,150,441,314,314,0,378,314,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303300,0.1,1,2,306051,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -156,5,150,418,297,297,0,358,297,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -157,5,150,422,300,300,0,361,300,chapter_04_01,bgm_asgard_01,303102,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 -158,5,150,444,317,317,0,381,317,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -159,5,150,458,327,327,0,393,327,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -160,5,150,362,252,252,0,307,252,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -161,5,150,384,268,268,0,326,268,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -162,5,150,450,321,321,0,385,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303201,0.1,1,2,303302,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -163,5,150,462,328,328,0,395,328,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303201,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -164,5,150,450,320,320,0,384,320,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -165,5,150,531,380,380,0,456,380,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -166,5,150,456,324,324,0,390,324,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -167,5,150,455,324,324,0,389,324,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -168,5,150,431,302,302,0,366,302,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -169,5,150,431,304,304,0,367,304,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -170,5,150,426,302,302,0,363,302,chapter_04_02,bgm_asgard_02,303202,0.1,1,2,303302,0.1,1,2,303400,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -171,5,150,485,342,342,0,413,342,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303202,0.1,1,2,303400,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -172,5,150,467,332,332,0,399,332,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -173,5,150,429,302,302,0,365,302,chapter_04_02,bgm_asgard_02,303001,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -174,5,150,491,349,349,0,420,349,chapter_04_02,bgm_asgard_02,303001,0.1,1,2,303202,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 -175,5,150,495,347,347,0,422,347,chapter_04_02,bgm_asgard_02,306035,0.88,2,2,306036,0.03,1,1,306039,0.03,1,1,306038,0.03,1,1,306037,0.03,1,1,,,,,,,,,,,,,,,,,,,,,1,2 -176,5,150,412,291,291,0,351,291,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303202,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 -177,5,150,424,298,298,0,361,298,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -178,5,150,503,358,358,0,430,358,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -179,5,150,464,331,331,0,397,331,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303301,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -180,5,150,529,379,379,0,453,379,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -181,5,150,497,348,348,0,422,348,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -182,5,150,543,388,388,0,465,388,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303101,0.1,1,2,303202,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -183,5,150,442,309,309,0,376,309,chapter_04_03,bgm_asgard_03,303101,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -184,5,150,479,339,339,0,408,339,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -185,5,150,456,323,323,0,389,323,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -186,5,150,518,363,363,0,441,363,chapter_04_03,bgm_asgard_03,303203,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -187,5,150,545,389,389,0,467,389,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -188,5,150,600,430,430,0,516,430,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -189,5,150,628,450,450,0,538,450,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -190,5,150,536,376,376,0,455,376,chapter_04_03,bgm_asgard_03,303102,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 -191,5,150,577,412,412,0,495,412,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -192,5,150,602,429,429,0,516,429,chapter_04_03,bgm_asgard_03,303102,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -193,5,150,602,429,429,0,516,429,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,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 -194,5,150,523,367,367,0,446,367,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -195,5,150,544,390,390,0,466,390,chapter_04_03,bgm_asgard_03,303102,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -196,5,150,525,369,369,0,447,369,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -197,5,150,509,357,357,0,431,357,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 -198,5,150,472,333,333,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,459,327,327,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,511,364,364,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,562,400,400,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,614,438,438,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,594,424,424,0,509,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,800,570,570,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,780,556,556,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 +29,5,150,35,35,35,0,35,35,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303100,0.1,1,2,303200,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +30,5,150,34,34,34,0,34,34,chapter_01_03,bgm_yggdrasil_03,303100,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +31,5,150,33,33,33,0,33,33,chapter_01_01,bgm_yggdrasil_01,303100,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +32,5,150,32,32,32,0,32,32,chapter_01_01,bgm_yggdrasil_01,303100,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +33,5,150,31,31,31,0,31,31,chapter_01_02,bgm_yggdrasil_02,303100,0.1,1,2,303200,0.1,1,2,303400,0.1,1,2,306001,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +34,5,150,30,30,30,0,30,30,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303100,0.1,1,2,303400,0.1,1,2,306025,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +35,5,150,29,29,29,0,29,29,chapter_01_01,bgm_yggdrasil_01,303101,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +36,5,150,28,28,28,0,28,28,chapter_01_02,bgm_yggdrasil_02,303101,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306023,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +37,5,150,27,27,27,0,27,27,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303101,0.1,1,2,303300,0.1,1,2,306002,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +38,5,150,26,26,26,0,26,26,chapter_01_02,bgm_yggdrasil_02,303001,0.1,1,2,303200,0.1,1,2,303400,0.1,1,2,306024,0.7,1,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +39,5,150,25,25,25,0,25,25,chapter_01_01,bgm_yggdrasil_01,303101,0.1,1,2,303200,0.1,1,2,303300,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +40,5,150,24,24,24,0,24,24,chapter_01_03,bgm_yggdrasil_03,303200,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306024,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,2,4 +41,5,150,23,23,23,0,23,23,chapter_01_01,bgm_yggdrasil_01,303201,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +42,5,150,22,22,22,0,22,22,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306023,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +43,5,150,21,21,21,0,21,21,chapter_01_02,bgm_yggdrasil_02,303201,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +44,5,150,20,20,20,0,20,20,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306002,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +45,5,150,20,20,20,0,20,20,chapter_01_01,bgm_yggdrasil_01,303101,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306001,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +46,5,150,20,20,20,0,20,20,chapter_01_02,bgm_yggdrasil_02,303101,0.1,1,2,303300,0.1,1,2,303400,0.1,1,2,306023,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +47,5,150,40,20,20,0,40,40,chapter_01_01,bgm_yggdrasil_01,303301,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +48,5,150,20,20,20,0,20,20,chapter_01_02,bgm_yggdrasil_02,303001,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +49,5,150,20,20,20,0,20,20,chapter_01_01,bgm_yggdrasil_01,303001,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306024,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +50,5,150,20,20,20,0,20,20,chapter_01_03,bgm_yggdrasil_03,303101,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +51,5,150,20,20,20,0,20,20,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306009,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +52,5,150,20,20,20,0,20,20,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303201,0.1,1,2,303400,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +53,5,150,20,20,20,0,20,20,chapter_02_02,bgm_alfheim_02,303401,1,1,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,1 +54,5,150,20,20,20,0,20,20,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306011,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +55,5,150,20,20,20,0,20,20,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +56,5,150,20,20,20,0,20,20,chapter_02_02,bgm_alfheim_02,303001,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306009,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +57,5,150,20,20,20,0,20,20,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306000,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +58,5,150,118,70,118,0,50,50,chapter_02_02,bgm_alfheim_02,303201,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306025,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +59,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303100,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306011,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +60,5,150,50,50,50,0,50,50,chapter_02_03,bgm_alfheim_03,303100,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306010,0.7,2,3,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +61,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303001,0.1,1,2,303100,0.1,1,2,303201,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +62,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +63,5,150,50,50,50,0,50,50,chapter_02_02,bgm_alfheim_02,303002,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +64,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +65,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +66,5,150,50,50,50,0,50,50,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +67,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +68,5,150,50,50,50,0,50,50,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +69,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +70,5,150,50,50,50,0,50,50,chapter_02_03,bgm_alfheim_03,306040,0.97,2,2,306041,0.01,1,1,306044,0.01,1,1,306043,0.01,1,1,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +71,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303101,0.1,1,2,303200,0.1,1,2,303301,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +72,5,150,50,50,50,0,50,50,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303201,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +73,5,150,30,30,30,0,30,30,chapter_02_02,bgm_alfheim_02,303101,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306002,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +74,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303101,0.1,1,2,303401,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +75,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303102,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +76,5,150,30,30,30,0,30,30,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306001,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +77,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303201,0.1,1,2,303301,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +78,5,150,30,30,30,0,30,30,chapter_02_02,bgm_alfheim_02,303201,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +79,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306000,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +80,5,150,30,30,30,0,30,30,chapter_02_03,bgm_alfheim_03,303102,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +81,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303300,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +82,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303201,0.1,1,2,303300,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +83,5,150,10,20,10,0,20,20,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303201,0.1,1,2,303401,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +84,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +85,5,150,30,30,30,0,30,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303201,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +86,5,150,100,50,50,0,100,20,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +87,5,150,100,50,50,0,100,20,chapter_02_01,bgm_alfheim_01,303202,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +88,5,150,100,50,50,0,100,20,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +89,5,150,100,50,50,0,100,20,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306009,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +90,5,150,100,50,50,0,100,20,chapter_02_03,bgm_alfheim_03,303102,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +91,5,150,100,50,50,0,100,20,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306010,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +92,5,150,100,50,50,0,100,20,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +93,5,150,100,50,50,0,100,100,chapter_02_02,bgm_alfheim_02,303102,0.1,1,2,303202,0.1,1,2,303400,0.1,1,2,306011,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +94,5,150,80,35,50,0,60,60,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +95,5,150,80,35,50,0,60,60,chapter_02_01,bgm_alfheim_01,303102,0.1,1,2,303301,0.1,1,2,303400,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +96,5,150,60,35,30,0,40,60,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303202,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +97,5,150,30,25,20,0,40,30,chapter_02_01,bgm_alfheim_01,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +98,5,150,20,10,20,0,20,20,chapter_02_02,bgm_alfheim_02,303002,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +99,5,150,20,10,20,0,20,20,chapter_02_01,bgm_alfheim_01,303000,0.1,1,2,303102,0.1,1,2,303301,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +100,5,150,50,60,153,0,80,50,chapter_02_03,bgm_alfheim_03,303000,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +101,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303000,0.1,1,2,303301,0.1,1,2,303401,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +102,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303302,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +103,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +104,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303202,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +105,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303202,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +106,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +107,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +108,5,150,200,180,100,0,50,90,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +109,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303401,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +110,5,150,50,60,40,0,20,20,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +111,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303100,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +112,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303100,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306028,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +113,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +114,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303001,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +115,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303001,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +116,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303401,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +117,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303402,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +118,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +119,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +120,5,150,50,60,40,0,20,20,chapter_03_03,bgm_svartalfheim_03,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +121,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303202,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +122,5,150,374,150,266,0,50,90,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +123,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +124,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306027,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +125,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,306040,0.96,2,2,306041,0.01,1,1,306044,0.01,1,1,306043,0.01,1,1,306042,0.01,1,1,,,,,,,,,,,,,,,,,,,,,1,2 +126,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303101,0.1,1,2,303402,0.1,1,2,306051,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +127,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303101,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +128,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +129,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +130,5,150,50,60,40,0,20,20,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +131,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +132,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +133,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +134,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +135,5,150,100,150,100,0,20,130,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306028,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +136,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306026,0.5,2,3,306040,0.12,1,2,306041,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +137,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306005,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +138,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303200,0.1,1,2,303302,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +139,5,150,100,150,200,0,20,130,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303200,0.1,1,2,303302,0.1,1,2,306004,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +140,5,150,50,60,40,0,20,20,chapter_03_03,bgm_svartalfheim_03,303202,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +141,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +142,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306051,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +143,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +144,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306013,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +145,5,150,50,60,40,0,20,20,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306012,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +146,5,150,50,60,40,0,20,20,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306014,0.5,2,3,306040,0.12,1,2,306043,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +147,5,150,100,150,150,0,20,100,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +148,5,150,100,80,150,0,20,100,chapter_03_02,bgm_svartalfheim_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306003,0.5,2,3,306040,0.12,1,2,306044,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +149,5,150,100,100,120,0,20,80,chapter_03_01,bgm_svartalfheim_01,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306050,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +150,5,150,100,80,130,0,20,100,chapter_03_03,bgm_svartalfheim_03,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306052,0.5,2,3,306040,0.12,1,2,306042,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +151,5,150,150,200,200,0,100,317,chapter_04_01,bgm_asgard_01,306035,0.92,2,2,306036,0.02,1,1,306039,0.02,1,1,306038,0.02,1,1,306037,0.02,1,1,,,,,,,,,,,,,,,,,,,,,1,2 +152,5,150,150,200,200,0,100,317,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +153,5,150,150,200,200,0,100,317,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +154,5,150,150,200,200,0,100,317,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303300,0.1,1,2,303402,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +155,5,150,200,208,230,0,115,317,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303300,0.1,1,2,306051,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +156,5,150,200,216,230,0,130,317,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +157,5,150,200,224,230,0,145,317,chapter_04_01,bgm_asgard_01,303102,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 +158,5,150,200,230,230,0,150,317,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306029,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +159,5,150,308,200,230,0,150,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +160,5,150,316,200,230,0,150,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +161,5,150,324,200,230,0,150,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +162,5,150,230,200,230,0,150,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303201,0.1,1,2,303302,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +163,5,150,235,212,235,0,150,321,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303201,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +164,5,150,240,224,240,0,150,321,chapter_04_01,bgm_asgard_01,303102,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +165,5,150,245,236,245,0,150,321,chapter_04_01,bgm_asgard_01,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +166,5,150,250,250,250,0,150,321,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +167,5,150,255,264,250,0,150,324,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +168,5,150,260,278,250,0,150,302,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +169,5,150,265,292,250,0,150,304,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +170,5,150,270,306,250,0,150,302,chapter_04_02,bgm_asgard_02,303202,0.1,1,2,303302,0.1,1,2,303400,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +171,5,150,275,320,250,0,150,342,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303202,0.1,1,2,303400,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +172,5,150,280,334,250,0,150,332,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +173,5,150,285,348,250,0,150,302,chapter_04_02,bgm_asgard_02,303001,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +174,5,150,290,362,250,0,150,349,chapter_04_02,bgm_asgard_02,303001,0.1,1,2,303202,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 +175,5,150,295,347,275,0,150,347,chapter_04_02,bgm_asgard_02,306035,0.88,2,2,306036,0.03,1,1,306039,0.03,1,1,306038,0.03,1,1,306037,0.03,1,1,,,,,,,,,,,,,,,,,,,,,1,2 +176,5,150,300,334,300,0,150,291,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303202,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 +177,5,150,305,348,325,0,150,298,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +178,5,150,310,358,358,0,150,358,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303301,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +179,5,150,310,350,300,0,150,331,chapter_04_02,bgm_asgard_02,303102,0.1,1,2,303301,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +180,5,150,310,350,300,0,150,379,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303202,0.1,1,2,303402,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +181,5,150,310,350,300,0,150,348,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306030,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +182,5,150,310,330,280,0,350,388,chapter_04_02,bgm_asgard_02,303002,0.1,1,2,303101,0.1,1,2,303202,0.1,1,2,306016,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +183,5,150,310,330,300,0,350,309,chapter_04_03,bgm_asgard_03,303101,0.1,1,2,303202,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +184,5,150,310,330,300,0,350,339,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306007,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +185,5,150,310,330,300,0,350,323,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,0.1,1,2,303302,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +186,5,150,310,330,300,0,350,363,chapter_04_03,bgm_asgard_03,303203,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +187,5,150,310,330,300,0,350,389,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +188,5,150,310,330,300,0,350,430,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +189,5,150,310,330,300,0,350,450,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306031,0.5,2,3,306035,0.12,1,2,306036,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +190,5,150,310,330,300,0,350,376,chapter_04_03,bgm_asgard_03,303102,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 +191,5,150,312,332,302,0,370,412,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306055,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +192,5,150,314,334,304,0,390,429,chapter_04_03,bgm_asgard_03,303102,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306008,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +193,5,150,316,336,306,0,410,429,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303102,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 +194,5,150,318,338,308,0,446,367,chapter_04_03,bgm_asgard_03,303203,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306015,0.5,2,3,306035,0.12,1,2,306038,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +195,5,150,320,340,310,0,466,390,chapter_04_03,bgm_asgard_03,303102,0.1,1,2,303203,0.1,1,2,303302,0.1,1,2,306006,0.5,2,3,306035,0.12,1,2,306039,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +196,5,150,322,342,312,0,447,369,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303302,0.1,1,2,303402,0.1,1,2,306053,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +197,5,150,324,344,314,0,431,357,chapter_04_03,bgm_asgard_03,303002,0.1,1,2,303203,0.1,1,2,303402,0.1,1,2,306054,0.5,2,3,306035,0.12,1,2,306037,0.08,1,1,,,,,,,,,,,,,,,,,3,4 +198,5,150,280,310,280,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,315,330,282,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,330,310,284,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,500,380,350,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,515,410,350,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,594,424,424,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,700,550,500,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,800,570,556,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,824,587,587,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,859,613,613,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,969,692,692,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,834,595,595,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,926,660,660,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,975,695,695,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,905,646,646,0,776,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,922,657,657,0,789,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,899,642,642,0,771,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,895,638,638,0,766,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,935,667,667,0,800,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,1001,715,715,0,858,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,952,679,679,0,816,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,993,710,710,0,852,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,932,665,665,0,798,665,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,1162,829,736,0,903,829,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,1315,939,800,0,988,939,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,1516,1083,891,0,1107,1083,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,1585,1133,906,0,1133,1133,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,1562,1115,891,0,1115,1115,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,1485,1082,864,0,1082,1082,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,1670,1169,935,0,1169,1169,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,1646,1152,920,0,1152,1152,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,1918,1370,1096,0,1370,1370,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,1539,1100,879,0,1100,1100,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,1808,1253,1002,0,1253,1253,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,1686,1162,928,0,1162,1162,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,1625,1086,869,0,1086,1086,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,1610,1110,887,0,1110,1110,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,1758,1164,931,0,1164,1164,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,1950,1278,1023,0,1278,1278,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,1832,1190,951,0,1190,1190,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,1850,1214,970,0,1214,1214,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,1795,1131,905,0,1131,1131,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,1965,1276,1020,0,1276,1276,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,1883,1346,1076,0,1346,1346,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,1792,1280,1024,0,1280,1280,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,1883,1346,1076,0,1346,1346,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,1829,1307,1045,0,1307,1307,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,1829,1307,1045,0,1307,1307,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,1756,1254,1003,0,1254,1254,chapter_05_02,bgm_muspelheim_02,303303,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 -247,5,150,1810,1293,1034,0,1293,1293,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,1883,1346,1076,0,1346,1346,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,1829,1307,1045,0,1307,1307,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,2000,1400,1100,0,1400,1400,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 +208,5,150,1000,730,692,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,834,630,595,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,926,680,660,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,1020,720,695,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,950,750,730,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,922,657,657,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,899,642,642,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,895,638,638,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,935,667,667,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,1001,715,715,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,952,679,679,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,993,710,710,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,932,665,665,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,980,829,700,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,1000,939,735,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,1100,1083,770,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,1200,1000,800,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,1225,1020,815,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,1250,1040,830,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,1275,1060,845,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,1300,1080,860,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,1315,1185,880,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,1330,1190,900,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,1340,1195,920,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,1350,1100,940,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,1360,1086,869,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,1370,1110,887,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,1380,1164,931,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,1390,1169,1023,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,1392,1100,951,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,1394,1102,970,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,1396,1104,905,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,1398,1106,920,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,1400,1108,935,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,1402,1086,950,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,1404,1088,965,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,1406,1090,980,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,1408,1092,995,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,1410,1094,997,0,1254,890,chapter_05_02,bgm_muspelheim_02,303303,1,2,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,2 +247,5,150,1412,1096,999,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,1414,1098,1001,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,1416,1100,1003,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,1418,1150,1005,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,2200,1540,1210,0,1540,1540,chapter_06_01,bgm_jotunheim_01,303202,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,2,3 252,5,150,2226,1561,1226,0,1561,1561,chapter_06_01,bgm_jotunheim_01,303003,1,3,3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,1,3 253,5,150,2253,1583,1242,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 @@ -341,9 +341,9 @@ id,cost_ap,turn_limit,hp_additional,atk_additional,def_additional,cri_additional 340,5,150,5000,9500,4368,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,5200,9800,4384,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,5400,10100,4401,0,10700,3884,chapter_07_01,bgm_niflheim_01,303404,1,6,6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,6,6 -343,5,150,5600,10400,4417,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,,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -344,5,150,5800,10700,4433,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,,,,,,,,,,,,,,,,,,,,,,,,,,3,4 -345,5,150,6000,11000,4449,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,,,,,,,,,,,,,,,,,,,,,,,,,,,3,4 +343,5,150,5600,10400,4417,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,5800,10700,4433,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,6000,11000,4449,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,6500,10600,4465,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,7000,10700,4481,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,7500,10800,4297,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 diff --git a/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv b/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv index 1857c5ef66..51d295b6bd 100644 --- a/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv +++ b/Lib9c/TableCSV/WorldAndStage/StageWaveSheet.csv @@ -26,17 +26,17 @@ stage_id,wave,monster1_id,monster1_level,monster1_count,monster2_id,monster2_lev 9,1,204000,4,3,201001,4,1,,,,,,,0 9,2,201001,4,3,201004,4,1,,,,,,,0 9,3,201001,4,2,201004,4,1,204000,4,1,,,,0 -10,1,204000,5,1,201002,5,1,,,,,,,0 -10,2,201002,5,2,201004,5,1,,,,,,,0 +10,1,204000,5,1,,,,,,,,,,0 +10,2,201002,5,2,,,,,,,,,,0 10,3,201007,6,1,,,,,,,,,,1 -11,1,201000,6,2,201001,6,1,,,,,,,0 -11,2,204020,6,3,,,,,,,,,,0 -11,3,204020,6,3,,,,,,,,,,0 +11,1,201000,6,1,201001,6,1,,,,,,,0 +11,2,204020,6,2,,,,,,,,,,0 +11,3,204020,6,2,,,,,,,,,,0 12,1,201000,6,1,201001,6,2,,,,,,,0 -12,2,204020,6,3,,,,,,,,,,0 -12,3,204020,6,3,,,,,,,,,,0 -13,1,201001,7,1,201002,7,2,,,,,,,0 -13,2,204000,7,2,204010,7,3,,,,,,,0 +12,2,204020,6,2,,,,,,,,,,0 +12,3,204020,6,2,,,,,,,,,,0 +13,1,201001,7,1,201002,7,1,,,,,,,0 +13,2,204000,7,2,,,,,,,,,,0 13,3,201003,8,1,,,,,,,,,,1 14,1,201000,8,2,201004,8,1,,,,,,,0 14,2,204000,8,2,204020,8,1,,,,,,,0 diff --git a/Lib9c/TableCSV/WorldBoss/WorldBossGlobalHpSheet.csv b/Lib9c/TableCSV/WorldBoss/WorldBossGlobalHpSheet.csv index fa4b31cebc..10315ee580 100644 --- a/Lib9c/TableCSV/WorldBoss/WorldBossGlobalHpSheet.csv +++ b/Lib9c/TableCSV/WorldBoss/WorldBossGlobalHpSheet.csv @@ -98,4 +98,204 @@ level,hp 97,185421700 98,185421700 99,185421700 -100,185421700 \ No newline at end of file +100,185421700 +101,370843400 +102,370843400 +103,370843400 +104,370843400 +105,370843400 +106,370843400 +107,370843400 +108,370843400 +109,370843400 +110,370843400 +111,370843400 +112,370843400 +113,370843400 +114,370843400 +115,370843400 +116,370843400 +117,370843400 +118,370843400 +119,370843400 +120,370843400 +121,370843400 +122,370843400 +123,370843400 +124,370843400 +125,370843400 +126,370843400 +127,370843400 +128,370843400 +129,370843400 +130,370843400 +131,370843400 +132,370843400 +133,370843400 +134,370843400 +135,370843400 +136,370843400 +137,370843400 +138,370843400 +139,370843400 +140,370843400 +141,370843400 +142,370843400 +143,370843400 +144,370843400 +145,370843400 +146,370843400 +147,370843400 +148,370843400 +149,370843400 +150,370843400 +151,370843400 +152,370843400 +153,370843400 +154,370843400 +155,370843400 +156,370843400 +157,370843400 +158,370843400 +159,370843400 +160,370843400 +161,370843400 +162,370843400 +163,370843400 +164,370843400 +165,370843400 +166,370843400 +167,370843400 +168,370843400 +169,370843400 +170,370843400 +171,370843400 +172,370843400 +173,370843400 +174,370843400 +175,370843400 +176,370843400 +177,370843400 +178,370843400 +179,370843400 +180,370843400 +181,370843400 +182,370843400 +183,370843400 +184,370843400 +185,370843400 +186,370843400 +187,370843400 +188,370843400 +189,370843400 +190,370843400 +191,370843400 +192,370843400 +193,370843400 +194,370843400 +195,370843400 +196,370843400 +197,370843400 +198,370843400 +199,370843400 +200,370843400 +201,741686800 +202,741686800 +203,741686800 +204,741686800 +205,741686800 +206,741686800 +207,741686800 +208,741686800 +209,741686800 +210,741686800 +211,741686800 +212,741686800 +213,741686800 +214,741686800 +215,741686800 +216,741686800 +217,741686800 +218,741686800 +219,741686800 +220,741686800 +221,741686800 +222,741686800 +223,741686800 +224,741686800 +225,741686800 +226,741686800 +227,741686800 +228,741686800 +229,741686800 +230,741686800 +231,741686800 +232,741686800 +233,741686800 +234,741686800 +235,741686800 +236,741686800 +237,741686800 +238,741686800 +239,741686800 +240,741686800 +241,741686800 +242,741686800 +243,741686800 +244,741686800 +245,741686800 +246,741686800 +247,741686800 +248,741686800 +249,741686800 +250,741686800 +251,741686800 +252,741686800 +253,741686800 +254,741686800 +255,741686800 +256,741686800 +257,741686800 +258,741686800 +259,741686800 +260,741686800 +261,741686800 +262,741686800 +263,741686800 +264,741686800 +265,741686800 +266,741686800 +267,741686800 +268,741686800 +269,741686800 +270,741686800 +271,741686800 +272,741686800 +273,741686800 +274,741686800 +275,741686800 +276,741686800 +277,741686800 +278,741686800 +279,741686800 +280,741686800 +281,741686800 +282,741686800 +283,741686800 +284,741686800 +285,741686800 +286,741686800 +287,741686800 +288,741686800 +289,741686800 +290,741686800 +291,741686800 +292,741686800 +293,741686800 +294,741686800 +295,741686800 +296,741686800 +297,741686800 +298,741686800 +299,741686800 +300,741686800 \ No newline at end of file diff --git a/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv b/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv index 0c825b3f7f..7d0aa40c68 100644 --- a/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv +++ b/Lib9c/TableCSV/WorldBoss/WorldBossListSheet.csv @@ -16,4 +16,16 @@ id,boss_id,started_block_index,ended_block_index,fee,ticket_price,additional_tic 15,900002,7615601,7666000,1,1,1,40 16,900001,7716401,7766800,1,1,1,40 17,900002,7867601,7918000,1,1,1,40 -18,900001,8018801,8069200,1,1,1,40 \ No newline at end of file +18,900001,8018801,8119600,1,1,1,40 +19,900002,8220401,8341360,1,1,1,40 +20,900001,8462321,8583280,1,1,1,40 +21,900002,8704241,8825200,1,1,1,40 +22,900001,8946161,9067120,1,1,1,40 +23,900002,9188081,9309040,1,1,1,40 +24,900001,9430001,9550960,1,1,1,40 +25,900002,9671921,9792880,1,1,1,40 +26,900001,9913841,10034800,1,1,1,40 +27,900002,10155761,10276720,1,1,1,40 +28,900001,10397681,10518640,1,1,1,40 +29,900002,10639601,10760560,1,1,1,40 +30,900001,10881521,11002480,1,1,1,40