diff --git a/BLHX.Server.Common/Data/Data.cs b/BLHX.Server.Common/Data/Data.cs index 89eaa62..3a31b0a 100644 --- a/BLHX.Server.Common/Data/Data.cs +++ b/BLHX.Server.Common/Data/Data.cs @@ -31,6 +31,13 @@ public static class Data [LoadData("task_data_template.json", LoadDataType.ShareCfgData)] public static Dictionary TaskDataTemplate { get; private set; } = null!; + [LoadData("item_data_statistics.json", LoadDataType.ShareCfgData)] + public static Dictionary ItemDataStatistics { get; private set; } = null!; + + [LoadData("activity_ship_create.json", LoadDataType.ShareCfg)] + public static Dictionary ActivityShipCreate { get; private set; } = null!; + + public static void Load() { foreach (var prop in typeof(Data).GetProperties().Where(x => x.GetCustomAttribute() is not null)) diff --git a/BLHX.Server.Common/Data/Model/ActivityShipCreate.cs b/BLHX.Server.Common/Data/Model/ActivityShipCreate.cs new file mode 100644 index 0000000..6536fff --- /dev/null +++ b/BLHX.Server.Common/Data/Model/ActivityShipCreate.cs @@ -0,0 +1,23 @@ +using System.Text.Json.Serialization; + +namespace BLHX.Server.Common.Data { + public class ActivityShipCreate { + [JsonPropertyName("activity_id")] + public uint ActivityId { get; set; } + + [JsonPropertyName("create_id")] + public uint CreateId { get; set; } + + [JsonPropertyName("id")] + public uint Id { get; set; } + + [JsonPropertyName("pickup_list")] + public uint[] PickupList { get; set; } + + [JsonPropertyName("pickup_num")] + public uint PickupNum { get; set; } + + [JsonPropertyName("ratio_display")] + public uint[] RatioDisplay { get; set; } + } +} diff --git a/BLHX.Server.Common/Data/Model/ItemDataStatistics.cs b/BLHX.Server.Common/Data/Model/ItemDataStatistics.cs new file mode 100644 index 0000000..adee440 --- /dev/null +++ b/BLHX.Server.Common/Data/Model/ItemDataStatistics.cs @@ -0,0 +1,86 @@ +using System.Text.Json.Serialization; + +namespace BLHX.Server.Common.Data; + +public class ItemDataStatistics : Model { + [JsonPropertyName("combination_display")] + public int[] CombinationDisplay { get; set; } // Empty array implies List + + [JsonPropertyName("compose_number")] + public int ComposeNumber { get; set; } + + [JsonPropertyName("display")] + public string Display { get; set; } + + [JsonPropertyName("display_effect")] + public string DisplayEffect { get; set; } + + [JsonPropertyName("display_icon")] + public object DisplayIcon { get; set; } + + [JsonPropertyName("icon")] + public string Icon { get; set; } + + [JsonPropertyName("id")] + public int Id { get; set; } + + [JsonPropertyName("index")] + public int[] Index { get; set; } // Assuming empty array + + [JsonPropertyName("is_world")] + public int IsWorld { get; set; } + + [JsonPropertyName("limit")] + public string Limit { get; set; } + + [JsonPropertyName("link_id")] + public int LinkId { get; set; } + + [JsonPropertyName("max_num")] + public int MaxNum { get; set; } + + [JsonPropertyName("name")] + public string Name { get; set; } + + [JsonPropertyName("open_directly")] + public int OpenDirectly { get; set; } + + [JsonPropertyName("order")] + public int Order { get; set; } + + [JsonPropertyName("other_item_cost")] + public string OtherItemCost { get; set; } + + [JsonPropertyName("other_resource_cost")] + public string OtherResourceCost { get; set; } + + [JsonPropertyName("price")] + public object Price { get; set; } + + [JsonPropertyName("rarity")] + public int Rarity { get; set; } + + [JsonPropertyName("replace_item")] + public int ReplaceItem { get; set; } + + [JsonPropertyName("shiptrans_id")] + public int[] ShiptransId { get; set; } // Assuming empty array + + [JsonPropertyName("target_id")] + public int TargetId { get; set; } + + [JsonPropertyName("time_limit")] + public int TimeLimit { get; set; } + + [JsonPropertyName("type")] + public int Type { get; set; } + + [JsonPropertyName("usage")] + public string Usage { get; set; } + + [JsonPropertyName("usage_arg")] + public object UsageArg { get; set; } + + [JsonPropertyName("virtual_type")] + public int VirtualType { get; set; } +} diff --git a/BLHX.Server.Common/Database/Player.cs b/BLHX.Server.Common/Database/Player.cs index 1dd39d0..6ec231c 100644 --- a/BLHX.Server.Common/Database/Player.cs +++ b/BLHX.Server.Common/Database/Player.cs @@ -6,10 +6,8 @@ using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; -namespace BLHX.Server.Common.Database -{ - public sealed class PlayerContext : DbContext, IBLHXDBContext - { +namespace BLHX.Server.Common.Database { + public sealed class PlayerContext : DbContext, IBLHXDBContext { SavingState savingState; public static string DbPath => "Databases/players.db"; public DbSet Players { get; set; } @@ -18,8 +16,7 @@ namespace BLHX.Server.Common.Database public DbSet Ships { get; set; } public DbSet ChapterInfoes { get; set; } - public PlayerContext() - { + public PlayerContext() { if (Database.GetPendingMigrations().Any()) Database.Migrate(); @@ -29,13 +26,11 @@ namespace BLHX.Server.Common.Database } // Thread-safe method pls - public void Save() - { - if (savingState == SavingState.Attempting) + public void Save() { + if (savingState == SavingState.Attempting) return; - while (savingState != SavingState.None) - { + while (savingState != SavingState.None) { savingState = SavingState.Attempting; Task.Delay(1).Wait(); } @@ -43,8 +38,7 @@ namespace BLHX.Server.Common.Database SaveChanges(); } - public Player Init(string token, uint shipId, string name) - { + public Player Init(string token, uint shipId, string name) { var player = new Player(token, new Displayinfo() { Icon = shipId }, name); Players.Add(player); @@ -66,8 +60,7 @@ namespace BLHX.Server.Common.Database return player; } - public void PlayerRoutine(Player player) - { + public void PlayerRoutine(Player player) { if (!ResourceFields.Any(x => x.Type == ResourceFieldType.Gold)) ResourceFields.Add(new() { Type = ResourceFieldType.Gold, PlayerUid = player.Uid }); if (!ResourceFields.Any(x => x.Type == ResourceFieldType.Oil)) @@ -76,13 +69,13 @@ namespace BLHX.Server.Common.Database Save(); } - protected override void OnModelCreating(ModelBuilder modelBuilder) - { + protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); - modelBuilder.Entity(e => - { + modelBuilder.Entity(e => { e.Property(b => b.DisplayInfo) .HasJsonConversion(); + e.Property(b => b.Appreciation) + .HasJsonConversion(); e.Property(b => b.Fleets) .HasJsonConversion() .HasDefaultValue(new List() { @@ -108,9 +101,13 @@ namespace BLHX.Server.Common.Database .WithOne(e => e.Player) .HasForeignKey(e => e.PlayerUid) .IsRequired(); + e.OwnsOne(x => x.RefundShopInfoLists); + e.OwnsOne(x => x.CardLists); + e.OwnsOne(x => x.CdLists); + e.OwnsOne(x => x.TakingShipLists); + }); - modelBuilder.Entity(e => - { + modelBuilder.Entity(e => { e.Property(b => b.Id) .ValueGeneratedOnAdd(); e.Property(b => b.State) @@ -128,8 +125,7 @@ namespace BLHX.Server.Common.Database e.Property(b => b.CoreLists) .HasJsonConversion(); }); - modelBuilder.Entity(e => - { + modelBuilder.Entity(e => { e.Property(x => x.EscortLists) .HasJsonConversion(); e.Property(x => x.AiLists) @@ -163,43 +159,128 @@ namespace BLHX.Server.Common.Database [PrimaryKey(nameof(Uid))] [Index(nameof(Token), IsUnique = true)] - public class Player - { + public class Player { + [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public uint Uid { get; set; } - public string Token { get; set; } + public string Name { get; set; } - // Aka. manifesto - public string Adv { get; set; } = string.Empty; + public uint Level { get; set; } - // TODO: Exp add setter to recalculate cap and set level - public uint Exp { get; set; } + + public uint Exp { get; set; } // TODO: Exp add setter to recalculate cap and set level + + public uint AttackCount { get; set; } + + public uint WinCount { get; set; } + + public string Adv { get; set; } = string.Empty; // Aka. manifesto + + public uint ShipBagMax { get; set; } = 150; + + public uint EquipBagMax { get; set; } = 250; + + public uint GmFlag { get; set; } = 1; + + public uint Rank { get; set; } = 1; + + public uint PvpAttackCount { get; set; } + + public uint PvpWinCount { get; set; } + + public uint CollectAttackCount { get; set; } + + public uint GuideIndex { get; set; } = 1000000; + + public uint BuyOilCount { get; set; } + + public uint ChatRoomId { get; set; } = 1; + + public uint MaxRank { get; set; } + + public uint ShipCount { get { return (uint)Ships.Count; } } + + public uint AccPayLv { get; set; } + + public uint GuildWaitTime { get; set; } + + public uint ChatMsgBanTime { get; set; } + + public uint CommanderBagMax { get; set; } = 40; + public Displayinfo DisplayInfo { get; set; } + + public uint Rmb { get; set; } + + public Appreciationinfo Appreciation { get; set; } + + public uint ThemeUploadNotAllowedTime { get; set; } + + public uint RandomShipMode { get; set; } + + public uint MarryShip { get; set; } + + public uint ChildDisplay { get; set; } + public DateTime CreatedAt { get; set; } - public List Fleets { get; set; } = null!; - public List ShipSkins { get; set; } = null!; + public List Characters { get; set; } = [1]; + + public List StoryLists { get; set; } = []; + + public List FlagLists { get; set; } = []; + + public List MedalIds { get; set; } = []; + + public List CartoonReadMarks { get; set; } = []; + + public List CartoonCollectMarks { get; set; } = []; + + public List RandomShipLists { get; set; } = []; + + public List Soundstories { get; set; } = []; + + public virtual List CardLists { get; set; } = []; + + public virtual List CdLists { get; set; } = []; + + public virtual List IconFrameLists { get; set; } = []; + + public virtual List ChatFrameLists { get; set; } = []; + + public virtual List RefundShopInfoLists { get; set; } = []; + + public virtual List TakingShipLists { get; set; } = []; + + // + public string Token { get; set; } + public uint? CurrentChapter { get; set; } + public List Fleets { get; set; } = null!; + + public List ShipSkins { get; set; } = null!; + public virtual ICollection Resources { get; set; } = []; + public virtual ICollection ResourceFields { get; set; } = []; + public virtual ICollection Ships { get; set; } = []; + public virtual ICollection ChapterInfoes { get; set; } = []; - public Player(string token, Displayinfo displayInfo, string name) - { + public Player(string token, Displayinfo displayInfo, string name) { DisplayInfo = displayInfo; Token = token; Name = name; Level = 1; CreatedAt = DateTime.Now; + Appreciation = new Appreciationinfo() { Gallerys = [], Musics = [], FavorGallerys = [], FavorMusics = [] }; } - public void DoResource(uint id, int num) - { + public void DoResource(uint id, int num) { var res = Resources.SingleOrDefault(x => x.Id == id); - if (res is null) - { + if (res is null) { res = new() { Id = id, PlayerUid = Uid }; DBManager.PlayerContext.Resources.Add(res); } @@ -210,13 +291,11 @@ namespace BLHX.Server.Common.Database res.Num = Math.Min(res.Num + (uint)num, uint.MaxValue); } - public void AddShip(uint shipTemplateId) - { + public void AddShip(uint shipTemplateId) { if (!Data.Data.ShipDataTemplate.TryGetValue((int)shipTemplateId, out var shipTemplate)) throw new InvalidDataException($"Ship template {shipTemplateId} not found!"); - var ship = new PlayerShip() - { + var ship = new PlayerShip() { TemplateId = shipTemplateId, Level = 1, EquipInfoLists = [ @@ -238,15 +317,11 @@ namespace BLHX.Server.Common.Database DBManager.PlayerContext.Ships.Add(ship); } - public void HarvestResourceField(ResourceFieldType type) - { - foreach (var resourceField in ResourceFields) - { - if (resourceField.Type == type) - { + public void HarvestResourceField(ResourceFieldType type) { + foreach (var resourceField in ResourceFields) { + if (resourceField.Type == type) { var amount = resourceField.Flush(); - switch (type) - { + switch (type) { case ResourceFieldType.Gold: DoResource(1, (int)amount); break; @@ -262,8 +337,7 @@ namespace BLHX.Server.Common.Database } [PrimaryKey(nameof(Id), nameof(PlayerUid))] - public class PlayerResource - { + public class PlayerResource { [Key] public uint Id { get; set; } public uint Num { get; set; } @@ -274,8 +348,7 @@ namespace BLHX.Server.Common.Database } [PrimaryKey(nameof(Id))] - public class PlayerShip - { + public class PlayerShip { [Key] public uint Id { get; set; } public uint TemplateId { get; set; } @@ -307,10 +380,8 @@ namespace BLHX.Server.Common.Database public DateTime CreatedAt { get; set; } = DateTime.Now; public DateTime? LastChangeName { get; set; } - public Shipinfo ToProto() - { - return new() - { + public Shipinfo ToProto() { + return new() { Id = Id, TemplateId = TemplateId, Level = Level, @@ -340,15 +411,13 @@ namespace BLHX.Server.Common.Database } } - public enum ResourceFieldType - { + public enum ResourceFieldType { Gold = 1, Oil = 2 } [PrimaryKey(nameof(Type), nameof(PlayerUid))] - public class ResourceField - { + public class ResourceField { [Key] public ResourceFieldType Type { get; set; } public uint Level { get; set; } = 1; @@ -359,14 +428,11 @@ namespace BLHX.Server.Common.Database public uint PlayerUid { get; set; } public virtual Player Player { get; set; } = null!; - public void CalculateYield() - { + public void CalculateYield() { // TODO: Take UpgradeTime into acccount of the reward - switch (Type) - { + switch (Type) { case ResourceFieldType.Gold: - if (Data.Data.GoldFieldTemplate.TryGetValue((int)Level, out var goldTemplate)) - { + if (Data.Data.GoldFieldTemplate.TryGetValue((int)Level, out var goldTemplate)) { var res = Player.Resources.FirstOrDefault(x => x.Id == 7); var num = (goldTemplate.HourTime * goldTemplate.Production) / 3600f * LastHarvestTime.GetSecondsPassed(); @@ -375,8 +441,7 @@ namespace BLHX.Server.Common.Database } break; case ResourceFieldType.Oil: - if (Data.Data.OilFieldTemplate.TryGetValue((int)Level, out var oilTemplate)) - { + if (Data.Data.OilFieldTemplate.TryGetValue((int)Level, out var oilTemplate)) { var res = Player.Resources.FirstOrDefault(x => x.Id == 5); var num = (oilTemplate.HourTime * oilTemplate.Production) / 3600f * LastHarvestTime.GetSecondsPassed(); @@ -387,15 +452,12 @@ namespace BLHX.Server.Common.Database } } - public uint Flush() - { + public uint Flush() { uint amount = 0; // TODO: Take UpgradeTime into acccount of the reward - switch (Type) - { + switch (Type) { case ResourceFieldType.Gold: - if (Data.Data.GoldFieldTemplate.TryGetValue((int)Level, out var goldTemplate)) - { + if (Data.Data.GoldFieldTemplate.TryGetValue((int)Level, out var goldTemplate)) { var goldField = Player.Resources.First(x => x.Id == 7); amount = goldField.Num; @@ -403,8 +465,7 @@ namespace BLHX.Server.Common.Database } break; case ResourceFieldType.Oil: - if (Data.Data.OilFieldTemplate.TryGetValue((int)Level, out var oilTemplate)) - { + if (Data.Data.OilFieldTemplate.TryGetValue((int)Level, out var oilTemplate)) { var oilField = Player.Resources.First(x => x.Id == 5); amount = oilField.Num; @@ -419,8 +480,7 @@ namespace BLHX.Server.Common.Database } [PrimaryKey(nameof(Id), nameof(PlayerUid))] - public class ChapterInfo - { + public class ChapterInfo { [Key] public uint Id { get; set; } public DateTime Time { get; set; } @@ -449,17 +509,15 @@ namespace BLHX.Server.Common.Database public uint PlayerUid { get; set; } public virtual Player Player { get; set; } = null!; - public Currentchapterinfo ToProto() - { - return new Currentchapterinfo() - { + public Currentchapterinfo ToProto() { + return new Currentchapterinfo() { Id = Id, AiLists = AiLists, BattleStatistics = BattleStatistics, BuffLists = BuffLists, CellFlagLists = CellFlagLists, CellLists = CellLists, - ChapterHp = ChapterHp, + ChapterHp = ChapterHp, ChapterStrategyLists = ChapterStrategyLists, ContinuousKillCount = ContinuousKillCount, EscortLists = EscortLists, @@ -478,10 +536,8 @@ namespace BLHX.Server.Common.Database }; } - public static ChapterInfo FromProto(Currentchapterinfo chapterInfo, uint uid) - { - return new() - { + public static ChapterInfo FromProto(Currentchapterinfo chapterInfo, uint uid) { + return new() { Id = chapterInfo.Id, AiLists = chapterInfo.AiLists, BattleStatistics = chapterInfo.BattleStatistics, diff --git a/BLHX.Server.Common/Migrations/Player/20240220103529_Init_PlayerContext.cs b/BLHX.Server.Common/Migrations/Player/20240220103529_Init_PlayerContext.cs index 0b0eacc..860ee18 100644 --- a/BLHX.Server.Common/Migrations/Player/20240220103529_Init_PlayerContext.cs +++ b/BLHX.Server.Common/Migrations/Player/20240220103529_Init_PlayerContext.cs @@ -3,18 +3,14 @@ using Microsoft.EntityFrameworkCore.Migrations; #nullable disable -namespace BLHX.Server.Common.Migrations.Player -{ +namespace BLHX.Server.Common.Migrations.Player { /// - public partial class Init_PlayerContext : Migration - { + public partial class Init_PlayerContext : Migration { /// - protected override void Up(MigrationBuilder migrationBuilder) - { + protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Players", - columns: table => new - { + columns: table => new { Uid = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), Token = table.Column(type: "TEXT", nullable: false), @@ -24,21 +20,18 @@ namespace BLHX.Server.Common.Migrations.Player DisplayInfo = table.Column(type: "jsonb", nullable: false), CreatedAt = table.Column(type: "TEXT", nullable: false) }, - constraints: table => - { + constraints: table => { table.PrimaryKey("PK_Players", x => x.Uid); }); migrationBuilder.CreateTable( name: "Resources", - columns: table => new - { + columns: table => new { Id = table.Column(type: "INTEGER", nullable: false), PlayerUid = table.Column(type: "INTEGER", nullable: false), Num = table.Column(type: "INTEGER", nullable: false) }, - constraints: table => - { + constraints: table => { table.PrimaryKey("PK_Resources", x => new { x.Id, x.PlayerUid }); table.ForeignKey( name: "FK_Resources_Players_PlayerUid", @@ -50,8 +43,7 @@ namespace BLHX.Server.Common.Migrations.Player migrationBuilder.CreateTable( name: "Ships", - columns: table => new - { + columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), TemplateId = table.Column(type: "INTEGER", nullable: false), @@ -79,8 +71,7 @@ namespace BLHX.Server.Common.Migrations.Player CreatedAt = table.Column(type: "TEXT", nullable: false), LastChangeName = table.Column(type: "TEXT", nullable: false) }, - constraints: table => - { + constraints: table => { table.PrimaryKey("PK_Ships", x => x.Id); table.ForeignKey( name: "FK_Ships_Players_PlayerUid", @@ -108,8 +99,7 @@ namespace BLHX.Server.Common.Migrations.Player } /// - protected override void Down(MigrationBuilder migrationBuilder) - { + protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Resources"); diff --git a/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.Designer.cs b/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.Designer.cs new file mode 100644 index 0000000..7c5f11b --- /dev/null +++ b/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.Designer.cs @@ -0,0 +1,583 @@ +// +using System; +using BLHX.Server.Common.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BLHX.Server.Common.Migrations.Player +{ + [DbContext(typeof(PlayerContext))] + [Migration("20240405053357_Players_AddParams")] + partial class Players_AddParams + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.2") + .HasAnnotation("Proxies:ChangeTracking", false) + .HasAnnotation("Proxies:CheckEquality", false) + .HasAnnotation("Proxies:LazyLoading", true); + + modelBuilder.Entity("BLHX.Server.Common.Database.ChapterInfo", b => + { + b.Property("Id") + .HasColumnType("INTEGER"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("AiLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("BattleStatistics") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("BuffLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CellFlagLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CellLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ChapterHp") + .HasColumnType("INTEGER"); + + b.Property("ChapterStrategyLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ContinuousKillCount") + .HasColumnType("INTEGER"); + + b.Property("EscortLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("ExtraFlagLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("FleetDuties") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("GroupLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("InitShipCount") + .HasColumnType("INTEGER"); + + b.Property("IsSubmarineAutoAttack") + .HasColumnType("INTEGER"); + + b.Property("KillCount") + .HasColumnType("INTEGER"); + + b.Property("LoopFlag") + .HasColumnType("INTEGER"); + + b.Property("ModelActCount") + .HasColumnType("INTEGER"); + + b.Property("MoveStepCount") + .HasColumnType("INTEGER"); + + b.Property("OperationBuffs") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Round") + .HasColumnType("INTEGER"); + + b.Property("Time") + .HasColumnType("TEXT"); + + b.HasKey("Id", "PlayerUid"); + + b.HasIndex("PlayerUid"); + + b.ToTable("ChapterInfoes"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.Player", b => + { + b.Property("Uid") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("AccPayLv") + .HasColumnType("INTEGER"); + + b.Property("Adv") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasDefaultValue(""); + + b.Property("Appreciation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("AttackCount") + .HasColumnType("INTEGER"); + + b.Property("BuyOilCount") + .HasColumnType("INTEGER"); + + b.Property("CartoonCollectMarks") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CartoonReadMarks") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Characters") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ChatMsgBanTime") + .HasColumnType("INTEGER"); + + b.Property("ChatRoomId") + .HasColumnType("INTEGER"); + + b.Property("ChildDisplay") + .HasColumnType("INTEGER"); + + b.Property("CollectAttackCount") + .HasColumnType("INTEGER"); + + b.Property("CommanderBagMax") + .HasColumnType("INTEGER"); + + b.Property("CreatedAt") + .HasColumnType("TEXT"); + + b.Property("CurrentChapter") + .HasColumnType("INTEGER"); + + b.Property("DisplayInfo") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("EquipBagMax") + .HasColumnType("INTEGER"); + + b.Property("Exp") + .HasColumnType("INTEGER"); + + b.Property("FlagLists") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Fleets") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValue("[{\"Id\":1,\"Name\":null,\"ShipLists\":[1,2],\"Commanders\":[]},{\"Id\":2,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]},{\"Id\":11,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]},{\"Id\":12,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]}]"); + + b.Property("GmFlag") + .HasColumnType("INTEGER"); + + b.Property("GuideIndex") + .HasColumnType("INTEGER"); + + b.Property("GuildWaitTime") + .HasColumnType("INTEGER"); + + b.Property("Level") + .HasColumnType("INTEGER"); + + b.Property("MarryShip") + .HasColumnType("INTEGER"); + + b.Property("MaxRank") + .HasColumnType("INTEGER"); + + b.Property("MedalIds") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("PvpAttackCount") + .HasColumnType("INTEGER"); + + b.Property("PvpWinCount") + .HasColumnType("INTEGER"); + + b.Property("RandomShipLists") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("RandomShipMode") + .HasColumnType("INTEGER"); + + b.Property("Rank") + .HasColumnType("INTEGER"); + + b.Property("Rmb") + .HasColumnType("INTEGER"); + + b.Property("ShipBagMax") + .HasColumnType("INTEGER"); + + b.Property("ShipSkins") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("jsonb") + .HasDefaultValue("[]"); + + b.Property("Soundstories") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("StoryLists") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ThemeUploadNotAllowedTime") + .HasColumnType("INTEGER"); + + b.Property("Token") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("WinCount") + .HasColumnType("INTEGER"); + + b.HasKey("Uid"); + + b.HasIndex("Token") + .IsUnique(); + + b.ToTable("Players"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.PlayerResource", b => + { + b.Property("Id") + .HasColumnType("INTEGER"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("Num") + .HasColumnType("INTEGER"); + + b.HasKey("Id", "PlayerUid"); + + b.HasIndex("PlayerUid"); + + b.ToTable("Resources"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.PlayerShip", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("ActivityNpc") + .HasColumnType("INTEGER"); + + b.Property("BluePrintFlag") + .HasColumnType("INTEGER"); + + b.Property("CommanderId") + .HasColumnType("INTEGER"); + + b.Property("CommonFlag") + .HasColumnType("INTEGER"); + + b.Property("CoreLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("CreatedAt") + .HasColumnType("TEXT"); + + b.Property("Energy") + .HasColumnType("INTEGER"); + + b.Property("EquipInfoLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Exp") + .HasColumnType("INTEGER"); + + b.Property("Intimacy") + .HasColumnType("INTEGER"); + + b.Property("IsLocked") + .HasColumnType("INTEGER"); + + b.Property("LastChangeName") + .HasColumnType("TEXT"); + + b.Property("Level") + .HasColumnType("INTEGER"); + + b.Property("MetaRepairLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("Name") + .HasColumnType("TEXT"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("Proficiency") + .HasColumnType("INTEGER"); + + b.Property("Propose") + .HasColumnType("INTEGER"); + + b.Property("SkillIdLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("SkinId") + .HasColumnType("INTEGER"); + + b.Property("State") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("StrengthLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("TemplateId") + .HasColumnType("INTEGER"); + + b.Property("TransformLists") + .IsRequired() + .HasColumnType("jsonb"); + + b.HasKey("Id"); + + b.HasIndex("PlayerUid"); + + b.ToTable("Ships"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.ResourceField", b => + { + b.Property("Type") + .HasColumnType("INTEGER"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("LastHarvestTime") + .HasColumnType("TEXT"); + + b.Property("Level") + .HasColumnType("INTEGER"); + + b.Property("UpgradeTime") + .HasColumnType("TEXT"); + + b.HasKey("Type", "PlayerUid"); + + b.HasIndex("PlayerUid"); + + b.ToTable("ResourceFields"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Proto.common.Idtimeinfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("PlayerUid1") + .HasColumnType("INTEGER"); + + b.Property("Time") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("PlayerUid"); + + b.HasIndex("PlayerUid1"); + + b.ToTable("Idtimeinfo"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.ChapterInfo", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", "Player") + .WithMany("ChapterInfoes") + .HasForeignKey("PlayerUid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.Player", b => + { + b.OwnsOne("System.Collections.Generic.List", "RefundShopInfoLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "CardLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "CdLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "TakingShipLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.Navigation("CardLists") + .IsRequired(); + + b.Navigation("CdLists") + .IsRequired(); + + b.Navigation("RefundShopInfoLists") + .IsRequired(); + + b.Navigation("TakingShipLists") + .IsRequired(); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.PlayerResource", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", "Player") + .WithMany("Resources") + .HasForeignKey("PlayerUid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.PlayerShip", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", "Player") + .WithMany("Ships") + .HasForeignKey("PlayerUid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.ResourceField", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", "Player") + .WithMany("ResourceFields") + .HasForeignKey("PlayerUid") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Proto.common.Idtimeinfo", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", null) + .WithMany("ChatFrameLists") + .HasForeignKey("PlayerUid"); + + b.HasOne("BLHX.Server.Common.Database.Player", null) + .WithMany("IconFrameLists") + .HasForeignKey("PlayerUid1"); + }); + + modelBuilder.Entity("BLHX.Server.Common.Database.Player", b => + { + b.Navigation("ChapterInfoes"); + + b.Navigation("ChatFrameLists"); + + b.Navigation("IconFrameLists"); + + b.Navigation("ResourceFields"); + + b.Navigation("Resources"); + + b.Navigation("Ships"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.cs b/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.cs new file mode 100644 index 0000000..a83b3a5 --- /dev/null +++ b/BLHX.Server.Common/Migrations/Player/20240405053357_Players_AddParams.cs @@ -0,0 +1,441 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BLHX.Server.Common.Migrations.Player +{ + /// + public partial class Players_AddParams : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "AccPayLv", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "Appreciation", + table: "Players", + type: "jsonb", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "AttackCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "BuyOilCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "CardLists_Capacity", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "CartoonCollectMarks", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "CartoonReadMarks", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "CdLists_Capacity", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "Characters", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "ChatMsgBanTime", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "ChatRoomId", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "ChildDisplay", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "CollectAttackCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "CommanderBagMax", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "EquipBagMax", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "FlagLists", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "GmFlag", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "GuideIndex", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "GuildWaitTime", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "MarryShip", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "MaxRank", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "MedalIds", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "PvpAttackCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "PvpWinCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "RandomShipLists", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "RandomShipMode", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "Rank", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "RefundShopInfoLists_Capacity", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "Rmb", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "ShipBagMax", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "Soundstories", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "StoryLists", + table: "Players", + type: "TEXT", + nullable: false, + defaultValue: ""); + + migrationBuilder.AddColumn( + name: "TakingShipLists_Capacity", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0); + + migrationBuilder.AddColumn( + name: "ThemeUploadNotAllowedTime", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.AddColumn( + name: "WinCount", + table: "Players", + type: "INTEGER", + nullable: false, + defaultValue: 0u); + + migrationBuilder.CreateTable( + name: "Idtimeinfo", + columns: table => new + { + Id = table.Column(type: "INTEGER", nullable: false) + .Annotation("Sqlite:Autoincrement", true), + Time = table.Column(type: "INTEGER", nullable: false), + PlayerUid = table.Column(type: "INTEGER", nullable: true), + PlayerUid1 = table.Column(type: "INTEGER", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Idtimeinfo", x => x.Id); + table.ForeignKey( + name: "FK_Idtimeinfo_Players_PlayerUid", + column: x => x.PlayerUid, + principalTable: "Players", + principalColumn: "Uid"); + table.ForeignKey( + name: "FK_Idtimeinfo_Players_PlayerUid1", + column: x => x.PlayerUid1, + principalTable: "Players", + principalColumn: "Uid"); + }); + + migrationBuilder.CreateIndex( + name: "IX_Idtimeinfo_PlayerUid", + table: "Idtimeinfo", + column: "PlayerUid"); + + migrationBuilder.CreateIndex( + name: "IX_Idtimeinfo_PlayerUid1", + table: "Idtimeinfo", + column: "PlayerUid1"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Idtimeinfo"); + + migrationBuilder.DropColumn( + name: "AccPayLv", + table: "Players"); + + migrationBuilder.DropColumn( + name: "Appreciation", + table: "Players"); + + migrationBuilder.DropColumn( + name: "AttackCount", + table: "Players"); + + migrationBuilder.DropColumn( + name: "BuyOilCount", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CardLists_Capacity", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CartoonCollectMarks", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CartoonReadMarks", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CdLists_Capacity", + table: "Players"); + + migrationBuilder.DropColumn( + name: "Characters", + table: "Players"); + + migrationBuilder.DropColumn( + name: "ChatMsgBanTime", + table: "Players"); + + migrationBuilder.DropColumn( + name: "ChatRoomId", + table: "Players"); + + migrationBuilder.DropColumn( + name: "ChildDisplay", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CollectAttackCount", + table: "Players"); + + migrationBuilder.DropColumn( + name: "CommanderBagMax", + table: "Players"); + + migrationBuilder.DropColumn( + name: "EquipBagMax", + table: "Players"); + + migrationBuilder.DropColumn( + name: "FlagLists", + table: "Players"); + + migrationBuilder.DropColumn( + name: "GmFlag", + table: "Players"); + + migrationBuilder.DropColumn( + name: "GuideIndex", + table: "Players"); + + migrationBuilder.DropColumn( + name: "GuildWaitTime", + table: "Players"); + + migrationBuilder.DropColumn( + name: "MarryShip", + table: "Players"); + + migrationBuilder.DropColumn( + name: "MaxRank", + table: "Players"); + + migrationBuilder.DropColumn( + name: "MedalIds", + table: "Players"); + + migrationBuilder.DropColumn( + name: "PvpAttackCount", + table: "Players"); + + migrationBuilder.DropColumn( + name: "PvpWinCount", + table: "Players"); + + migrationBuilder.DropColumn( + name: "RandomShipLists", + table: "Players"); + + migrationBuilder.DropColumn( + name: "RandomShipMode", + table: "Players"); + + migrationBuilder.DropColumn( + name: "Rank", + table: "Players"); + + migrationBuilder.DropColumn( + name: "RefundShopInfoLists_Capacity", + table: "Players"); + + migrationBuilder.DropColumn( + name: "Rmb", + table: "Players"); + + migrationBuilder.DropColumn( + name: "ShipBagMax", + table: "Players"); + + migrationBuilder.DropColumn( + name: "Soundstories", + table: "Players"); + + migrationBuilder.DropColumn( + name: "StoryLists", + table: "Players"); + + migrationBuilder.DropColumn( + name: "TakingShipLists_Capacity", + table: "Players"); + + migrationBuilder.DropColumn( + name: "ThemeUploadNotAllowedTime", + table: "Players"); + + migrationBuilder.DropColumn( + name: "WinCount", + table: "Players"); + } + } +} diff --git a/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs b/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs index 01fb54b..ac168d5 100644 --- a/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs +++ b/BLHX.Server.Common/Migrations/Player/PlayerContextModelSnapshot.cs @@ -116,12 +116,52 @@ namespace BLHX.Server.Common.Migrations.Player .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); + b.Property("AccPayLv") + .HasColumnType("INTEGER"); + b.Property("Adv") .IsRequired() .ValueGeneratedOnAdd() .HasColumnType("TEXT") .HasDefaultValue(""); + b.Property("Appreciation") + .IsRequired() + .HasColumnType("jsonb"); + + b.Property("AttackCount") + .HasColumnType("INTEGER"); + + b.Property("BuyOilCount") + .HasColumnType("INTEGER"); + + b.Property("CartoonCollectMarks") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("CartoonReadMarks") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("Characters") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ChatMsgBanTime") + .HasColumnType("INTEGER"); + + b.Property("ChatRoomId") + .HasColumnType("INTEGER"); + + b.Property("ChildDisplay") + .HasColumnType("INTEGER"); + + b.Property("CollectAttackCount") + .HasColumnType("INTEGER"); + + b.Property("CommanderBagMax") + .HasColumnType("INTEGER"); + b.Property("CreatedAt") .HasColumnType("TEXT"); @@ -132,32 +172,94 @@ namespace BLHX.Server.Common.Migrations.Player .IsRequired() .HasColumnType("jsonb"); + b.Property("EquipBagMax") + .HasColumnType("INTEGER"); + b.Property("Exp") .HasColumnType("INTEGER"); + b.Property("FlagLists") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Fleets") .IsRequired() .ValueGeneratedOnAdd() .HasColumnType("jsonb") .HasDefaultValue("[{\"Id\":1,\"Name\":null,\"ShipLists\":[1,2],\"Commanders\":[]},{\"Id\":2,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]},{\"Id\":11,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]},{\"Id\":12,\"Name\":null,\"ShipLists\":[],\"Commanders\":[]}]"); + b.Property("GmFlag") + .HasColumnType("INTEGER"); + + b.Property("GuideIndex") + .HasColumnType("INTEGER"); + + b.Property("GuildWaitTime") + .HasColumnType("INTEGER"); + b.Property("Level") .HasColumnType("INTEGER"); + b.Property("MarryShip") + .HasColumnType("INTEGER"); + + b.Property("MaxRank") + .HasColumnType("INTEGER"); + + b.Property("MedalIds") + .IsRequired() + .HasColumnType("TEXT"); + b.Property("Name") .IsRequired() .HasColumnType("TEXT"); + b.Property("PvpAttackCount") + .HasColumnType("INTEGER"); + + b.Property("PvpWinCount") + .HasColumnType("INTEGER"); + + b.Property("RandomShipLists") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("RandomShipMode") + .HasColumnType("INTEGER"); + + b.Property("Rank") + .HasColumnType("INTEGER"); + + b.Property("Rmb") + .HasColumnType("INTEGER"); + + b.Property("ShipBagMax") + .HasColumnType("INTEGER"); + b.Property("ShipSkins") .IsRequired() .ValueGeneratedOnAdd() .HasColumnType("jsonb") .HasDefaultValue("[]"); + b.Property("Soundstories") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("StoryLists") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("ThemeUploadNotAllowedTime") + .HasColumnType("INTEGER"); + b.Property("Token") .IsRequired() .HasColumnType("TEXT"); + b.Property("WinCount") + .HasColumnType("INTEGER"); + b.HasKey("Uid"); b.HasIndex("Token") @@ -300,6 +402,30 @@ namespace BLHX.Server.Common.Migrations.Player b.ToTable("ResourceFields"); }); + modelBuilder.Entity("BLHX.Server.Common.Proto.common.Idtimeinfo", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b.Property("PlayerUid1") + .HasColumnType("INTEGER"); + + b.Property("Time") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); + + b.HasIndex("PlayerUid"); + + b.HasIndex("PlayerUid1"); + + b.ToTable("Idtimeinfo"); + }); + modelBuilder.Entity("BLHX.Server.Common.Database.ChapterInfo", b => { b.HasOne("BLHX.Server.Common.Database.Player", "Player") @@ -311,6 +437,85 @@ namespace BLHX.Server.Common.Migrations.Player b.Navigation("Player"); }); + modelBuilder.Entity("BLHX.Server.Common.Database.Player", b => + { + b.OwnsOne("System.Collections.Generic.List", "RefundShopInfoLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "CardLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "CdLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.OwnsOne("System.Collections.Generic.List", "TakingShipLists", b1 => + { + b1.Property("PlayerUid") + .HasColumnType("INTEGER"); + + b1.Property("Capacity") + .HasColumnType("INTEGER"); + + b1.HasKey("PlayerUid"); + + b1.ToTable("Players"); + + b1.WithOwner() + .HasForeignKey("PlayerUid"); + }); + + b.Navigation("CardLists") + .IsRequired(); + + b.Navigation("CdLists") + .IsRequired(); + + b.Navigation("RefundShopInfoLists") + .IsRequired(); + + b.Navigation("TakingShipLists") + .IsRequired(); + }); + modelBuilder.Entity("BLHX.Server.Common.Database.PlayerResource", b => { b.HasOne("BLHX.Server.Common.Database.Player", "Player") @@ -344,10 +549,25 @@ namespace BLHX.Server.Common.Migrations.Player b.Navigation("Player"); }); + modelBuilder.Entity("BLHX.Server.Common.Proto.common.Idtimeinfo", b => + { + b.HasOne("BLHX.Server.Common.Database.Player", null) + .WithMany("ChatFrameLists") + .HasForeignKey("PlayerUid"); + + b.HasOne("BLHX.Server.Common.Database.Player", null) + .WithMany("IconFrameLists") + .HasForeignKey("PlayerUid1"); + }); + modelBuilder.Entity("BLHX.Server.Common.Database.Player", b => { b.Navigation("ChapterInfoes"); + b.Navigation("ChatFrameLists"); + + b.Navigation("IconFrameLists"); + b.Navigation("ResourceFields"); b.Navigation("Resources"); diff --git a/BLHX.Server.Common/Proto/Command.cs b/BLHX.Server.Common/Proto/Command.cs index 2b1e386..228b920 100644 --- a/BLHX.Server.Common/Proto/Command.cs +++ b/BLHX.Server.Common/Proto/Command.cs @@ -9,6 +9,7 @@ Cs10026 = 10026, Cs10100 = 10100, Cs10800 = 10800, + Cs10992 = 10992, Cs10993 = 10993, Cs10994 = 10994, Cs10996 = 10996, diff --git a/BLHX.Server.Common/Proto/p10_pb.cs b/BLHX.Server.Common/Proto/p10_pb.cs index b710050..692153f 100644 --- a/BLHX.Server.Common/Proto/p10_pb.cs +++ b/BLHX.Server.Common/Proto/p10_pb.cs @@ -6,12 +6,10 @@ #region Designer generated code #pragma warning disable CS0612, CS0618, CS1591, CS3021, IDE0079, IDE1006, RCS1036, RCS1057, RCS1085, RCS1192 -namespace BLHX.Server.Common.Proto.p10 -{ +namespace BLHX.Server.Common.Proto.p10 { [global::ProtoBuf.ProtoContract(Name = @"cs_10001")] - public partial class Cs10001 : global::ProtoBuf.IExtensible - { + public partial class Cs10001 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -28,8 +26,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10020")] - public partial class Cs10020 : global::ProtoBuf.IExtensible - { + public partial class Cs10020 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -42,8 +39,7 @@ namespace BLHX.Server.Common.Proto.p10 [global::ProtoBuf.ProtoMember(3, Name = @"arg2")] [global::System.ComponentModel.DefaultValue("")] - public string Arg2 - { + public string Arg2 { get => __pbn__Arg2 ?? ""; set => __pbn__Arg2 = value; } @@ -53,8 +49,7 @@ namespace BLHX.Server.Common.Proto.p10 [global::ProtoBuf.ProtoMember(4, Name = @"arg3")] [global::System.ComponentModel.DefaultValue("")] - public string Arg3 - { + public string Arg3 { get => __pbn__Arg3 ?? ""; set => __pbn__Arg3 = value; } @@ -64,8 +59,7 @@ namespace BLHX.Server.Common.Proto.p10 [global::ProtoBuf.ProtoMember(5, Name = @"arg4")] [global::System.ComponentModel.DefaultValue("")] - public string Arg4 - { + public string Arg4 { get => __pbn__Arg4 ?? ""; set => __pbn__Arg4 = value; } @@ -77,8 +71,7 @@ namespace BLHX.Server.Common.Proto.p10 public string CheckKey { get; set; } [global::ProtoBuf.ProtoMember(7, Name = @"device")] - public uint Device - { + public uint Device { get => __pbn__Device.GetValueOrDefault(); set => __pbn__Device = value; } @@ -89,8 +82,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10022")] - public partial class Cs10022 : global::ProtoBuf.IExtensible - { + public partial class Cs10022 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -116,8 +108,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10024")] - public partial class Cs10024 : global::ProtoBuf.IExtensible - { + public partial class Cs10024 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -134,8 +125,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10026")] - public partial class Cs10026 : global::ProtoBuf.IExtensible - { + public partial class Cs10026 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -146,8 +136,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10100")] - public partial class Cs10100 : global::ProtoBuf.IExtensible - { + public partial class Cs10100 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -158,8 +147,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10800")] - public partial class Cs10800 : global::ProtoBuf.IExtensible - { + public partial class Cs10800 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -172,9 +160,30 @@ namespace BLHX.Server.Common.Proto.p10 } + [global::ProtoBuf.ProtoContract(Name = @"cs_10992")] + public partial class Cs10992 : global::ProtoBuf.IExtensible { + private global::ProtoBuf.IExtension __pbn__extensionData; + global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) + => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); + + [global::ProtoBuf.ProtoMember(1, Name = @"track_type", IsRequired = true)] + public uint TrackType { get; set; } + + [global::ProtoBuf.ProtoMember(2, Name = @"event_id", IsRequired = true)] + public uint EventId { get; set; } + + [global::ProtoBuf.ProtoMember(3, Name = @"para1", IsRequired = true)] + public string Para1 { get; set; } + + [global::ProtoBuf.ProtoMember(4, Name = @"para2", IsRequired = true)] + public string Para2 { get; set; } + + [global::ProtoBuf.ProtoMember(5, Name = @"para3", IsRequired = true)] + public string Para3 { get; set; } + } + [global::ProtoBuf.ProtoContract(Name = @"cs_10993")] - public partial class Cs10993 : global::ProtoBuf.IExtensible - { + public partial class Cs10993 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -189,8 +198,7 @@ namespace BLHX.Server.Common.Proto.p10 public string ActionDes { get; set; } [global::ProtoBuf.ProtoMember(4, Name = @"action_arg")] - public uint ActionArg - { + public uint ActionArg { get => __pbn__ActionArg.GetValueOrDefault(); set => __pbn__ActionArg = value; } @@ -201,8 +209,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10994")] - public partial class Cs10994 : global::ProtoBuf.IExtensible - { + public partial class Cs10994 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -213,8 +220,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"cs_10996")] - public partial class Cs10996 : global::ProtoBuf.IExtensible - { + public partial class Cs10996 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -228,8 +234,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"noticeinfo")] - public partial class Noticeinfo : global::ProtoBuf.IExtensible - { + public partial class Noticeinfo : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -246,8 +251,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10002")] - public partial class Sc10002 : global::ProtoBuf.IExtensible - { + public partial class Sc10002 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -258,8 +262,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10021")] - public partial class Sc10021 : global::ProtoBuf.IExtensible - { + public partial class Sc10021 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -280,8 +283,7 @@ namespace BLHX.Server.Common.Proto.p10 public global::System.Collections.Generic.List NoticeLists { get; set; } = new global::System.Collections.Generic.List(); [global::ProtoBuf.ProtoMember(6, Name = @"device")] - public uint Device - { + public uint Device { get => __pbn__Device.GetValueOrDefault(); set => __pbn__Device = value; } @@ -295,8 +297,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10023")] - public partial class Sc10023 : global::ProtoBuf.IExtensible - { + public partial class Sc10023 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -311,8 +312,7 @@ namespace BLHX.Server.Common.Proto.p10 public string ServerTicket { get; set; } [global::ProtoBuf.ProtoMember(4, Name = @"server_load")] - public uint ServerLoad - { + public uint ServerLoad { get => __pbn__ServerLoad.GetValueOrDefault(); set => __pbn__ServerLoad = value; } @@ -321,8 +321,7 @@ namespace BLHX.Server.Common.Proto.p10 private uint? __pbn__ServerLoad; [global::ProtoBuf.ProtoMember(5, Name = @"db_load")] - public uint DbLoad - { + public uint DbLoad { get => __pbn__DbLoad.GetValueOrDefault(); set => __pbn__DbLoad = value; } @@ -333,8 +332,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10025")] - public partial class Sc10025 : global::ProtoBuf.IExtensible - { + public partial class Sc10025 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -348,8 +346,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10027")] - public partial class Sc10027 : global::ProtoBuf.IExtensible - { + public partial class Sc10027 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -363,8 +360,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10101")] - public partial class Sc10101 : global::ProtoBuf.IExtensible - { + public partial class Sc10101 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -375,8 +371,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10801")] - public partial class Sc10801 : global::ProtoBuf.IExtensible - { + public partial class Sc10801 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -395,8 +390,7 @@ namespace BLHX.Server.Common.Proto.p10 [global::ProtoBuf.ProtoMember(5, Name = @"proxy_ip")] [global::System.ComponentModel.DefaultValue("")] - public string ProxyIp - { + public string ProxyIp { get => __pbn__ProxyIp ?? ""; set => __pbn__ProxyIp = value; } @@ -405,8 +399,7 @@ namespace BLHX.Server.Common.Proto.p10 private string __pbn__ProxyIp; [global::ProtoBuf.ProtoMember(6, Name = @"proxy_port")] - public uint ProxyPort - { + public uint ProxyPort { get => __pbn__ProxyPort.GetValueOrDefault(); set => __pbn__ProxyPort = value; } @@ -426,8 +419,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10995")] - public partial class Sc10995 : global::ProtoBuf.IExtensible - { + public partial class Sc10995 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -438,8 +430,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10997")] - public partial class Sc10997 : global::ProtoBuf.IExtensible - { + public partial class Sc10997 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -468,8 +459,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10998")] - public partial class Sc10998 : global::ProtoBuf.IExtensible - { + public partial class Sc10998 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -483,8 +473,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"sc_10999")] - public partial class Sc10999 : global::ProtoBuf.IExtensible - { + public partial class Sc10999 : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -495,8 +484,7 @@ namespace BLHX.Server.Common.Proto.p10 } [global::ProtoBuf.ProtoContract(Name = @"serverinfo")] - public partial class Serverinfo : global::ProtoBuf.IExtensible - { + public partial class Serverinfo : global::ProtoBuf.IExtensible { private global::ProtoBuf.IExtension __pbn__extensionData; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) => global::ProtoBuf.Extensible.GetExtensionObject(ref __pbn__extensionData, createIfMissing); @@ -517,8 +505,7 @@ namespace BLHX.Server.Common.Proto.p10 public string Name { get; set; } [global::ProtoBuf.ProtoMember(6, Name = @"tag_state")] - public uint TagState - { + public uint TagState { get => __pbn__TagState.GetValueOrDefault(); set => __pbn__TagState = value; } @@ -527,8 +514,7 @@ namespace BLHX.Server.Common.Proto.p10 private uint? __pbn__TagState; [global::ProtoBuf.ProtoMember(7, Name = @"sort")] - public uint Sort - { + public uint Sort { get => __pbn__Sort.GetValueOrDefault(); set => __pbn__Sort = value; } @@ -538,8 +524,7 @@ namespace BLHX.Server.Common.Proto.p10 [global::ProtoBuf.ProtoMember(8, Name = @"proxy_ip")] [global::System.ComponentModel.DefaultValue("")] - public string ProxyIp - { + public string ProxyIp { get => __pbn__ProxyIp ?? ""; set => __pbn__ProxyIp = value; } @@ -548,8 +533,7 @@ namespace BLHX.Server.Common.Proto.p10 private string __pbn__ProxyIp; [global::ProtoBuf.ProtoMember(9, Name = @"proxy_port")] - public uint ProxyPort - { + public uint ProxyPort { get => __pbn__ProxyPort.GetValueOrDefault(); set => __pbn__ProxyPort = value; } diff --git a/BLHX.Server.Common/Resources/ShareCfg/activity_ship_create.json b/BLHX.Server.Common/Resources/ShareCfg/activity_ship_create.json new file mode 100644 index 0000000..0f9d935 --- /dev/null +++ b/BLHX.Server.Common/Resources/ShareCfg/activity_ship_create.json @@ -0,0 +1,272 @@ +{ + "1": { + "activity_id": 30877, + "create_id": 7, + "id": 1, + "pickup_list": [ + 101031, + 101041, + 101061, + 101071, + 101091, + 101131, + 101141, + 101151, + 101171, + 101251, + 101351, + 101361, + 101371, + 101381, + 101391, + 101411, + 101421, + 101431, + 101441, + 101451, + 101461, + 101481, + 101491, + 102011, + 102021, + 102031, + 102041, + 102061, + 102071, + 102081, + 102131, + 102141, + 102151, + 102181, + 102191, + 102201, + 102231, + 102241, + 102251, + 102261, + 102271, + 201011, + 201021, + 201031, + 201061, + 201071, + 201081, + 201091, + 201101, + 201111, + 201161, + 201211, + 201241, + 201251, + 202011, + 202021, + 202031, + 202041, + 202071, + 202101, + 202121, + 202151, + 202181, + 202211, + 202221, + 202231, + 202261, + 202281, + 202291, + 202301, + 301011, + 301021, + 301051, + 301211, + 301231, + 301261, + 301301, + 301311, + 301321, + 301331, + 301351, + 301381, + 301541, + 301591, + 301601, + 301611, + 301621, + 301631, + 301641, + 301791, + 301811, + 301821, + 301831, + 301851, + 301861, + 302011, + 302041, + 302141, + 302211, + 401021, + 401191, + 401231, + 402011, + 402021, + 402031, + 502011, + 502041, + 502051, + 601031, + 701021, + 701041, + 701051, + 701061, + 702011, + 702021, + 702031, + 801021, + 801071, + 801081, + 802021, + 901011, + 901021, + 901031 + ], + "pickup_num": 2, + "ratio_display": [ + 250, + 250, + 250, + 200 + ] + }, + "2": { + "activity_id": 30877, + "create_id": 8, + "id": 2, + "pickup_list": [ + 100021, + 101514, + 105174, + 107104, + 118024, + 199044, + 205134, + 207074, + 299044, + 299054, + 301294, + 303194, + 305104, + 307084, + 399044, + 399054, + 405034, + 405054, + 499024, + 499054, + 499094, + 718014, + 899034, + 900302, + 900314, + 900315, + 900351, + 900365, + 900377, + 900378, + 900379, + 900392, + 900404, + 900910, + 900911, + 900914, + 900919, + 900920, + 900923, + 900927, + 900928, + 900931 + ], + "pickup_num": 2, + "ratio_display": [ + 250, + 250, + 250, + 200 + ] + }, + "3": { + "activity_id": 30877, + "create_id": 6, + "id": 3, + "pickup_list": [ + 103011, + 103031, + 103041, + 103051, + 103061, + 103071, + 106011, + 106021, + 107011, + 107021, + 107031, + 107041, + 107051, + 107061, + 107071, + 107091, + 107111, + 107381, + 108051, + 108071, + 112011, + 203011, + 203021, + 203031, + 203041, + 203051, + 203061, + 206011, + 206031, + 206041, + 207021, + 207031, + 207041, + 207051, + 306071, + 307071, + 307091, + 307101, + 307111, + 308011, + 308021, + 308031, + 308041, + 308051, + 308061, + 317011, + 407011, + 407021, + 408011, + 408021, + 408041, + 408051, + 408061, + 408071, + 408081, + 408091, + 506011, + 808011 + ], + "pickup_num": 2, + "ratio_display": [ + 250, + 250, + 250, + 200 + ] + }, + "all": [ + 1, + 2, + 3 + ] +} \ No newline at end of file diff --git a/BLHX.Server.Common/Resources/sharecfgdata/item_data_statistics.json b/BLHX.Server.Common/Resources/sharecfgdata/item_data_statistics.json new file mode 100644 index 0000000..671f2ce --- /dev/null +++ b/BLHX.Server.Common/Resources/sharecfgdata/item_data_statistics.json @@ -0,0 +1,86220 @@ +{ + "1": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Quintuple 533mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5200", + "id": 1, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Quintuple 533mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "2": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Rammer Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1600", + "id": 2, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Rammer Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "3": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Hydraulic Steering Gear Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1700", + "id": 3, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Hydraulic Steering Gear Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "4": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Navy Camouflage Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1900", + "id": 4, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Navy Camouflage Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "5": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Fire Suppressor Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2500", + "id": 5, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Fire Suppressor Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "6": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 533mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5000", + "id": 6, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 533mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "7": { + "combination_display": [], + "compose_number": 0, + "display": "T3 12.7mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/6000", + "id": 7, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 12.7mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "8": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 152mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/7000", + "id": 8, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 152mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "9": { + "combination_display": [], + "compose_number": 0, + "display": "T3 76mm Artillery Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/11000", + "id": 9, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 76mm Artillery Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 152mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/12000", + "id": 10, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 152mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 203mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/13000", + "id": 11, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 203mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "12": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 356mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/14100", + "id": 12, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 356mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13": { + "combination_display": [], + "compose_number": 0, + "display": "T3 20mm AA Oerlikon Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16000", + "id": 13, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 20mm AA Oerlikon Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "14": { + "combination_display": [], + "compose_number": 0, + "display": "T3 F2A Buffalo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17000", + "id": 14, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 F2A Buffalo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15": { + "combination_display": [], + "compose_number": 0, + "display": "T3 TBD Devastator Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/18000", + "id": 15, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 TBD Devastator Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "16": { + "combination_display": [], + "compose_number": 0, + "display": "T3 SBD Dauntless Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/19000", + "id": 16, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 SBD Dauntless Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 102mm Secondary Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21000", + "id": 17, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 102mm Secondary Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 102mm Secondary Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21100", + "id": 18, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 102mm Secondary Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "19": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 120mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21300", + "id": 19, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 120mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 152mm Secondary Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/22000", + "id": 20, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 152mm Secondary Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 40mm Pom Pom Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26000", + "id": 21, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 40mm Pom Pom Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "22": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Blackburn Skua Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/29000", + "id": 22, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Blackburn Skua Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "23": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 120mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/31100", + "id": 23, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 120mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "24": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 140mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32000", + "id": 24, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 140mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "25": { + "combination_display": [], + "compose_number": 0, + "display": "T3 356mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/34000", + "id": 25, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 356mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "26": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 610mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35000", + "id": 26, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 610mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "27": { + "combination_display": [], + "compose_number": 0, + "display": "T3 25mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36100", + "id": 27, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 25mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "28": { + "combination_display": [], + "compose_number": 0, + "display": "T3 A5M Claude Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37000", + "id": 28, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 A5M Claude Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "29": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Nakajima B5N Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38000", + "id": 29, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Nakajima B5N Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "30": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 127mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/41000", + "id": 30, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 127mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "31": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 20mm Machine Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46000", + "id": 31, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 20mm Machine Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "32": { + "combination_display": [], + "compose_number": 0, + "display": "T3 37mm AA 70K Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46100", + "id": 32, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 37mm AA 70K Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "33": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 128mm Dual Gun (SK C/41) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/41100", + "id": 33, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 128mm Dual Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "34": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 283mm Main Gun (SK C/28) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43100", + "id": 34, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 283mm Main Gun (SK C/28) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "35": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 283mm Main Gun (SK C/34) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44000", + "id": 35, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 283mm Main Gun (SK C/34) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "36": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45000", + "id": 36, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "37": { + "combination_display": [], + "compose_number": 0, + "display": "T2 BF-109T Fighter Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/47000", + "id": 37, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 BF-109T Fighter Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "38": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Ju-87C Dive Bomber Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/49000", + "id": 38, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Ju-87C Dive Bomber Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "39": { + "combination_display": [], + "compose_number": 0, + "display": "T1 A7M Reppü Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37300", + "id": 39, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 A7M Reppü Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "40": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Aichi B7A Ryusei Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38200", + "id": 40, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Aichi B7A Ryusei Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Aichi E16A Zuiun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39200", + "id": 41, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Aichi E16A Zuiun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "42": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Sea Gladiator Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27200", + "id": 42, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Sea Gladiator Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 550mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5300", + "id": 43, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 550mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "44": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 100mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/6100", + "id": 44, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 100mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "45": { + "combination_display": [], + "compose_number": 0, + "display": "Basic Sonar T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2900", + "id": 45, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Basic Sonar T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "46": { + "combination_display": [], + "compose_number": 0, + "display": "Improved Sonar T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/3000", + "id": 46, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Improved Sonar T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "47": { + "combination_display": [], + "compose_number": 0, + "display": "Basic Depth Charges T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/4000", + "id": 47, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Basic Depth Charges T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "48": { + "combination_display": [], + "compose_number": 0, + "display": "Improved Depth Charges T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/4100", + "id": 48, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Improved Depth Charges T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "49": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark 14 Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15000", + "id": 49, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark 14 Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "50": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark 16 Torpedo T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15100", + "id": 50, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark 16 Torpedo T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "51": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Type 92 Electric Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35400", + "id": 51, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Type 92 Electric Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "52": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Type 95 Oxygen Torpedo T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35500", + "id": 52, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Type 95 Oxygen Torpedo T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "53": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only G7a Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45300", + "id": 53, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only G7a Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "54": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only G7e Homing Torpedo T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45400", + "id": 54, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only G7e Homing Torpedo T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "55": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only 550mm 24V Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5500", + "id": 55, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only 550mm 24V Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "56": { + "combination_display": [], + "compose_number": 0, + "display": "Single 130mm Main Gun (Mle 1924) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50000", + "id": 56, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 130mm Main Gun (Mle 1924) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "57": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 152mm Main Gun (Mle 1930) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50200", + "id": 57, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 152mm Main Gun (Mle 1930) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "58": { + "combination_display": [], + "compose_number": 0, + "display": "Quadruple 330mm Main Gun (Mle 1931) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50300", + "id": 58, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Quadruple 330mm Main Gun (Mle 1931) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 381mm Main Gun (M1934) T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55000", + "id": 59, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 381mm Main Gun (M1934) T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60": { + "combination_display": [], + "compose_number": 0, + "display": "Single 90mm High-Angle Gun (M1939) T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55100", + "id": 60, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 90mm High-Angle Gun (M1939) T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "61": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (M1927) T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55200", + "id": 61, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (M1927) T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "62": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (M1924) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55300", + "id": 62, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (M1924) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "63": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 120mm Main Gun (M1936) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55400", + "id": 63, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 120mm Main Gun (M1936) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "64": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 120mm Main Gun (M1933) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55460", + "id": 64, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 120mm Main Gun (M1933) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "65": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 320mm Main Gun (M1934) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55480", + "id": 65, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 320mm Main Gun (M1934) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "66": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 37mm AA Gun (M1932) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55500", + "id": 66, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 37mm AA Gun (M1932) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "67": { + "combination_display": [], + "compose_number": 0, + "display": "Fairey Albacore T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/28300", + "id": 67, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fairey Albacore T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "68": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 152mm Main Gun T2 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32300", + "id": 68, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 152mm Main Gun T2 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "70": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Triple 152mm Main Gun (B-38 MK5) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85120", + "id": 70, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Triple 152mm Main Gun (B-38 MK5) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "71": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 100mm AA Gun (B-54) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85240", + "id": 71, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 100mm AA Gun (B-54) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "73": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Triple 406mm Main Gun (B-37 MK1) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85300", + "id": 73, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Triple 406mm Main Gun (B-37 MK1) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "74": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 100mm DP AA Gun (B-34 MZ-14) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85360", + "id": 74, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 100mm DP AA Gun (B-34 MZ-14) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "75": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 305mm Main Gun (M1907) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85420", + "id": 75, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 305mm Main Gun (M1907) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "76": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 152mm Main Gun (M1892) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85440", + "id": 76, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 152mm Main Gun (M1892) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "77": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Single 37mm AA Gun (70-K) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85180", + "id": 77, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Single 37mm AA Gun (70-K) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "78": { + "combination_display": [], + "compose_number": 0, + "display": "Single 138.6mm Main Gun (Mle 1927) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50700", + "id": 78, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 138.6mm Main Gun (Mle 1927) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "79": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 155mm Main Gun (Mle 1920) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50780", + "id": 79, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 155mm Main Gun (Mle 1920) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "80": { + "combination_display": [], + "compose_number": 0, + "display": "Single 155mm Secondary Gun (Mle 1920) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50800", + "id": 80, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 155mm Secondary Gun (Mle 1920) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "81": { + "combination_display": [], + "compose_number": 0, + "display": "Gourdou-Leseurre GL.2 Fighter T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50820", + "id": 81, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gourdou-Leseurre GL.2 Fighter T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "82": { + "combination_display": [], + "compose_number": 0, + "display": "Pierre Levasseur PL.7 Torpedo Bomber T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50840", + "id": 82, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Pierre Levasseur PL.7 Torpedo Bomber T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "83": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (Mle 1931) T1 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50860", + "id": 83, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (Mle 1931) T1 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1001": { + "combination_display": [], + "compose_number": 0, + "display": "Justice with a side of cola and chips!", + "display_effect": "", + "display_icon": [], + "icon": "Props/potechi", + "id": 1001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Chips Combo", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1002": { + "combination_display": [], + "compose_number": 0, + "display": "Fly under the Z flag for luck, victory, and justice! We will succeed, no matter the cost!", + "display_effect": "", + "display_icon": [], + "icon": "Equips/640", + "id": 1002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Z's Faith", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1003": { + "combination_display": [], + "compose_number": 0, + "display": "Z23's collection of medals.", + "display_effect": "", + "display_icon": [], + "icon": "props/z23", + "id": 1003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Z23's Medals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1004": { + "combination_display": [], + "compose_number": 0, + "display": "May the world be peaceful and blessed this Christmas Eve.", + "display_effect": "", + "display_icon": [], + "icon": "props/giftbox", + "id": 1004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Christmas Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1005": { + "combination_display": [], + "compose_number": 0, + "display": "Happy Year of the Pig! ", + "display_effect": "", + "display_icon": [], + "icon": "props/manjuuema", + "id": 1005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prayer for the New Year ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1006": { + "combination_display": [], + "compose_number": 0, + "display": "Bells from {namecode:79}. Who knows what will happen if you collect enough...", + "display_effect": "", + "display_icon": [], + "icon": "props/lingdang", + "id": 1006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Bells from {namecode:79}", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1007": { + "combination_display": [], + "compose_number": 0, + "display": "Collect all of them and you might win a fabulous prize!", + "display_effect": "", + "display_icon": [], + "icon": "props/nepitem", + "id": 1007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Vert Medal", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1008": { + "combination_display": [], + "compose_number": 0, + "display": "With luck to overcome the odds, unwavering zeal, and the firm belief in certain victory – hoist your flag high and depart for battle! ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/640", + "id": 1008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Z Conviction ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1010": { + "combination_display": [], + "compose_number": 0, + "display": "A crucial mission document necessary for the naval higher-ups to assess the situation and issue sanctions. (Will disappear after the event ends.) ", + "display_effect": "", + "display_icon": [], + "icon": "Props/zuozhanbaogao", + "id": 1010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Mission Report ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1011": { + "combination_display": [], + "compose_number": 0, + "display": "An important document that details the progress of the operation. Crucial reference material that allows the Naval HQ to assess the situation and approve future actions.", + "display_effect": "", + "display_icon": [], + "icon": "Props/zuozhanbaogao", + "id": 1011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Operation Report", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1013": { + "combination_display": [], + "compose_number": 0, + "display": "Bells from {namecode:79}. Who knows what will happen if you collect enough...", + "display_effect": "", + "display_icon": [], + "icon": "props/lingdang", + "id": 1013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Bells from {namecode:79}", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1014": { + "combination_display": [], + "compose_number": 0, + "display": "May the world be peaceful and blessed this Christmas Eve.", + "display_effect": "", + "display_icon": [], + "icon": "props/giftbox", + "id": 1014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Christmas Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1501": { + "combination_display": [], + "compose_number": 0, + "display": "This badge is awarded to our Commanders who went above and beyond in helping Yostar Games. Thank you!", + "display_effect": "", + "display_icon": [], + "icon": "props/Honorary", + "id": 1501, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Honorary Yostar CMD", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "1502": { + "combination_display": [], + "compose_number": 0, + "display": "To commemorate the day we celebrated the 1st birthday of Azur Lane EN on USS Iowa. With this badge, we wish everyone an epic voyage in life. ", + "display_effect": "", + "display_icon": [], + "icon": "props/Honorary2", + "id": 1502, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "1st Anniversary Souvenir Badge", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10000": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Repair Toolkit Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1000", + "id": 10000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Repair Toolkit Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10001": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Air Radar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1100", + "id": 10001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Air Radar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10002": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Fire-Control Radar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1200", + "id": 10002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Fire-Control Radar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10003": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Anti-Torpedo Bulge Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1300", + "id": 10003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Anti-Torpedo Bulge Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10004": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Steam Catapult Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1400", + "id": 10004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Steam Catapult Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10005": { + "combination_display": [], + "compose_number": 0, + "display": "T2 SG Radar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1500", + "id": 10005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 SG Radar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10006": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Advanced Boiler Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1800", + "id": 10006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Advanced Boiler Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10007": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Fuel Filter Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2000", + "id": 10007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Fuel Filter Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10008": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Aviation Oil Tank Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2100", + "id": 10008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Aviation Oil Tank Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10009": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Autoloader Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2200", + "id": 10009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Autoloader Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10010": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Gyroscope Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2300", + "id": 10010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Gyroscope Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10011": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Repair Tools Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2400", + "id": 10011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Repair Tools Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10012": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Type 93 Pure Oxygen Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2600", + "id": 10012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Type 93 Pure Oxygen Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10013": { + "combination_display": [], + "compose_number": 0, + "display": "T2 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2700", + "id": 10013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10014": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 533mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5100", + "id": 10014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 533mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10015": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quintuple 533mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5200", + "id": 10015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quintuple 533mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10016": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 127mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/11100", + "id": 10016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 127mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10017": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 127mm MK12 Dual Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/11200", + "id": 10017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 127mm Dual Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10018": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 152mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/12100", + "id": 10018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 152mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10019": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 203mm Advanced Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/13100", + "id": 10019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 203mm Advanced Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10021": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 406mm MK5 Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/14200", + "id": 10021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 406mm MK5 Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10022": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 406mm MK6 Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/14300", + "id": 10022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 406mm MK6 Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10024": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 20mm AA Oerlikon Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16100", + "id": 10024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 20mm AA Oerlikon Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10025": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 28mm Chicago Piano Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16200", + "id": 10025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 28mm Chicago Piano Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10026": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 40mm Bofors Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16300", + "id": 10026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 40mm Bofors Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10027": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quadruple 40mm Bofors Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16400", + "id": 10027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quadruple 40mm Bofors Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10028": { + "combination_display": [], + "compose_number": 0, + "display": "T3 F4F Wildcat Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17100", + "id": 10028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 F4F Wildcat Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10029": { + "combination_display": [], + "compose_number": 0, + "display": "T3 F4U Corsair Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17200", + "id": 10029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 F4U Corsair Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10030": { + "combination_display": [], + "compose_number": 0, + "display": "T2 F6F Hellcat Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17300", + "id": 10030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 F6F Hellcat Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10031": { + "combination_display": [], + "compose_number": 0, + "display": "T3 TBF Avenger Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/18100", + "id": 10031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 TBF Avenger Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10032": { + "combination_display": [], + "compose_number": 0, + "display": "T3 SB2C Helldiver Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/19100", + "id": 10032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 SB2C Helldiver Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10033": { + "combination_display": [], + "compose_number": 0, + "display": "T2 BTD-1 Destroyer Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/19200", + "id": 10033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 BTD-1 Destroyer Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10034": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 102mm Secondary Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21200", + "id": 10034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 102mm Secondary Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10035": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 120mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21400", + "id": 10035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 120mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10036": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 134mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21500", + "id": 10036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 134mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10037": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 152mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/22100", + "id": 10037, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 152mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10038": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 203mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/23000", + "id": 10038, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 203mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10039": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quadruple 356mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24000", + "id": 10039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quadruple 356mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10040": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 381mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24100", + "id": 10040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 381mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10041": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 406mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24200", + "id": 10041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 406mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10042": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 40mm Pom Pom Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26100", + "id": 10042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 40mm Pom Pom Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10043": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Octuple 40mm Pom Pom Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26200", + "id": 10043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Octuple 40mm Pom Pom Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10044": { + "combination_display": [], + "compose_number": 0, + "display": "T3 76mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26300", + "id": 10044, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 76mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10045": { + "combination_display": [], + "compose_number": 0, + "display": "T3 102mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26400", + "id": 10045, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 102mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10046": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 113mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26500", + "id": 10046, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 113mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10047": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Spitfire Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27000", + "id": 10047, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Spitfire Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10048": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Seafang Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27100", + "id": 10048, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Seafang Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10049": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Swordfish Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/28000", + "id": 10049, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Swordfish Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10050": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Barracuda Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/28100", + "id": 10050, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Barracuda Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10051": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Fairey Fulmar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/29100", + "id": 10051, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Fairey Fulmar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10052": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 100mm (Type 98) AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/31000", + "id": 10052, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 100mm (Type 98) AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10053": { + "combination_display": [], + "compose_number": 0, + "display": "T3 127mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/31200", + "id": 10053, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 127mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10054": { + "combination_display": [], + "compose_number": 0, + "display": "T3 140mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32100", + "id": 10054, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 140mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10055": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 155mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32200", + "id": 10055, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 155mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10056": { + "combination_display": [], + "compose_number": 0, + "display": "T3 203mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/33000", + "id": 10056, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 203mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10057": { + "combination_display": [], + "compose_number": 0, + "display": "T3 410mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/34100", + "id": 10057, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 410mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10059": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 610mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35100", + "id": 10059, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 610mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10060": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quadruple 610mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35200", + "id": 10060, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quadruple 610mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10062": { + "combination_display": [], + "compose_number": 0, + "display": "T3 25mm Mounted AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36200", + "id": 10062, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 25mm Mounted AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10063": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 25mm Mounted AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36300", + "id": 10063, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 25mm Mounted AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10064": { + "combination_display": [], + "compose_number": 0, + "display": "T3 40mm AA Vickers Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36400", + "id": 10064, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 40mm AA Vickers Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10065": { + "combination_display": [], + "compose_number": 0, + "display": "T3 127mm Mounted AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36600", + "id": 10065, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 127mm Mounted AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10066": { + "combination_display": [], + "compose_number": 0, + "display": "T3 A6M2 Zero Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37100", + "id": 10066, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 A6M2 Zero Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10067": { + "combination_display": [], + "compose_number": 0, + "display": "T2 A6M5 Zero Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37200", + "id": 10067, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 A6M5 Zero Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10068": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Nakajima B6N Tenzan Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38100", + "id": 10068, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Nakajima B6N Tenzan Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10069": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Aichi D3A Type 99 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39000", + "id": 10069, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Aichi D3A Type 99 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10070": { + "combination_display": [], + "compose_number": 0, + "display": "T2 D4Y Suisei Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39100", + "id": 10070, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 D4Y Suisei Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10071": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 150mm Main Gun (SK C/28) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/42000", + "id": 10071, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 150mm Main Gun (SK C/28) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10072": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 150mm Main Gun (SK C/25) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/42100", + "id": 10072, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 150mm Main Gun (SK C/25) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10073": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 150mm Main Gun (TbtsK C/36) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/42200", + "id": 10073, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 150mm Main Gun (TKC 36) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10074": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 203mm Main Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43000", + "id": 10074, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 203mm Main Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10075": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 283mm Main Gun (SK C/34) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44000", + "id": 10075, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 283mm Main Gun (SK C/34) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10076": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 380mm Main Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44100", + "id": 10076, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 380mm Main Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10077": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 37mm AA 70K Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46200", + "id": 10077, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 37mm AA 70K Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10078": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Twin 105mm AA Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46300", + "id": 10078, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Twin 105mm AA Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10079": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 128mm Dual Gun (SK C/41) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/41100", + "id": 10079, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 128mm Dual Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10080": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 283mm Main Gun (SK C/28) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43100", + "id": 10080, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 283mm Main Gun (SK C/28) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10081": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45000", + "id": 10081, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10082": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quadruple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45100", + "id": 10082, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quadruple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10083": { + "combination_display": [], + "compose_number": 0, + "display": "T1 Quintuple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45200", + "id": 10083, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Quintuple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10084": { + "combination_display": [], + "compose_number": 0, + "display": "T3 BF-109T Fighter Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/47000", + "id": 10084, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 BF-109T Fighter Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10085": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Messerschmitt Me-155A Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/47100", + "id": 10085, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Messerschmitt Me-155A Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10086": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Ju-87C Dive Bomber Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/49000", + "id": 10086, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Ju-87C Dive Bomber Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10087": { + "combination_display": [], + "compose_number": 0, + "display": "T2 A7M Reppü Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37300", + "id": 10087, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 A7M Reppü Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10088": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Aichi B7A Ryusei Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38200", + "id": 10088, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Aichi B7A Ryusei Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10089": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Aichi E16A Zuiun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39200", + "id": 10089, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Aichi E16A Zuiun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10090": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 550mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5400", + "id": 10090, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 550mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10091": { + "combination_display": [], + "compose_number": 0, + "display": "Basic Sonar T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2900", + "id": 10091, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Basic Sonar T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10092": { + "combination_display": [], + "compose_number": 0, + "display": "Improved Sonar T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/3000", + "id": 10092, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Improved Sonar T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10093": { + "combination_display": [], + "compose_number": 0, + "display": "Improved Depth Charges T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/4100", + "id": 10093, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Improved Depth Charges T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10094": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark 14 Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15000", + "id": 10094, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark 14 Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10095": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark 16 Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15100", + "id": 10095, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark 16 Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10096": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Type 92 Electric Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35400", + "id": 10096, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Type 92 Electric Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10097": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Type 95 Oxygen Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35500", + "id": 10097, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Type 95 Oxygen Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10098": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only G7a Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45300", + "id": 10098, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only G7a Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10099": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only G7e Homing Torpedo T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45400", + "id": 10099, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only G7e Homing Torpedo T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10100": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only 550mm 24V Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5500", + "id": 10100, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only 550mm 24V Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10101": { + "combination_display": [], + "compose_number": 0, + "display": "Single 138.6mm Main Gun (Mle 1929) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50100", + "id": 10101, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 138.6mm Main Gun (Mle 1929) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10102": { + "combination_display": [], + "compose_number": 0, + "display": "Quadruple 330mm Main Gun (Mle 1931) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50300", + "id": 10102, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Quadruple 330mm Main Gun (Mle 1931) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10103": { + "combination_display": [], + "compose_number": 0, + "display": "Quadruple 380mm Main Gun (Mle 1935) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50400", + "id": 10103, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Quadruple 380mm Main Gun (Mle 1935) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10104": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 381mm Main Gun (M1934) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55000", + "id": 10104, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 381mm Main Gun (M1934) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10105": { + "combination_display": [], + "compose_number": 0, + "display": "Single 90mm High-Angle Gun (M1939) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55100", + "id": 10105, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 90mm High-Angle Gun (M1939) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10106": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (M1927) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55200", + "id": 10106, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (M1927) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10107": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (M1924) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55300", + "id": 10107, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (M1924) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10108": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 120mm Main Gun (M1936) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55400", + "id": 10108, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 120mm Main Gun (M1936) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10109": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 37mm AA Gun (M1932) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55500", + "id": 10109, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 37mm AA Gun (M1932) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10110": { + "combination_display": [], + "compose_number": 0, + "display": "Fairey Albacore T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/28300", + "id": 10110, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fairey Albacore T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10111": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 152mm Main Gun T3 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32300", + "id": 10111, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 152mm Main Gun T3 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10113": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 152mm Main Gun (B-38 MK5) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85120", + "id": 10113, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 152mm Main Gun (B-38 MK5) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10114": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 100mm AA Gun (B-54) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85240", + "id": 10114, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 100mm AA Gun (B-54) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10116": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Triple 406mm Main Gun (B-37 MK1) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85300", + "id": 10116, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Triple 406mm Main Gun (B-37 MK1) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10117": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 100mm DP AA Gun (B-34 MZ-14) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85360", + "id": 10117, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 100mm DP AA Gun (B-34 MZ-14) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10118": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 37mm AA Gun (70-K) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85180", + "id": 10118, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 37mm AA Gun (70-K) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10119": { + "combination_display": [], + "compose_number": 0, + "display": "Single 138.6mm Main Gun (Mle 1927) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50700", + "id": 10119, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 138.6mm Main Gun (Mle 1927) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10120": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (Mle 1931) T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50860", + "id": 10120, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (Mle 1931) T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10121": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark VIII Torpedo T3 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/25100", + "id": 10121, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark VIII Torpedo T3 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10122": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Single 130mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/7200", + "id": 10122, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Single 130mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10123": { + "combination_display": [], + "compose_number": 0, + "display": "G.50 Freccia Fighter T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55720", + "id": 10123, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "G.50 Freccia Fighter T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10124": { + "combination_display": [], + "compose_number": 0, + "display": "Re.2001 Ariete Fighter T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55800", + "id": 10124, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Re.2001 Ariete Fighter T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "10125": { + "combination_display": [], + "compose_number": 0, + "display": "135mm Twin Main Gun Mount Model 1938 T2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55920", + "id": 10125, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "135mm Twin Main Gun Mount Model 1938 T2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11000": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Repair Toolkit Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1000", + "id": 11000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Repair Toolkit Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11001": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Steam Catapult Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1400", + "id": 11001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Steam Catapult Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11002": { + "combination_display": [], + "compose_number": 0, + "display": "T3 SG Radar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1500", + "id": 11002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 SG Radar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11003": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Type 93 Pure Oxygen Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2600", + "id": 11003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Type 93 Pure Oxygen Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11004": { + "combination_display": [], + "compose_number": 0, + "display": "T3 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/2700", + "id": 11004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11005": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quintuple 533mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/5200", + "id": 11005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quintuple 533mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11006": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 127mm MK12 Dual Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/11200", + "id": 11006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 127mm Dual Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11009": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 40mm Bofors Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/16400", + "id": 11009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 40mm Bofors Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11010": { + "combination_display": [], + "compose_number": 0, + "display": "T3 F6F Hellcat Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17300", + "id": 11010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 F6F Hellcat Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11011": { + "combination_display": [], + "compose_number": 0, + "display": "T3 BTD-1 Destroyer Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/19200", + "id": 11011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 BTD-1 Destroyer Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11012": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 356mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24000", + "id": 11012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 356mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11013": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 406mm Main Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24200", + "id": 11013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 406mm Main Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11014": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Octuple 40mm Pom Pom Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26200", + "id": 11014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Octuple 40mm Pom Pom Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11015": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 113mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26500", + "id": 11015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 113mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11016": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Seafang Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27100", + "id": 11016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Seafang Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11017": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Barracuda Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/28100", + "id": 11017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Barracuda Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11018": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 100mm (Type 98) AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/31000", + "id": 11018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 100mm (Type 98) AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11019": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 155mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32200", + "id": 11019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 155mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11021": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 610mm Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35200", + "id": 11021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 610mm Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11023": { + "combination_display": [], + "compose_number": 0, + "display": "T3 A6M5 Zero Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37200", + "id": 11023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 A6M5 Zero Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11024": { + "combination_display": [], + "compose_number": 0, + "display": "T3 D4Y Suisei Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39100", + "id": 11024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 D4Y Suisei Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11025": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 203mm Main Gun (SK C/28) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43000", + "id": 11025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 203mm Main Gun (SK C/28) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11026": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 380mm Main Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44100", + "id": 11026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 380mm Main Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11027": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Twin 105mm AA Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46300", + "id": 11027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Twin 105mm AA Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11028": { + "combination_display": [], + "compose_number": 0, + "display": "{namecode:98} A strange looking piece of material that may be used to craft special gear.", + "display_effect": "", + "display_icon": [], + "icon": "Equips/540", + "id": 11028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Peculiar Material", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11029": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Quadruple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45100", + "id": 11029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Quadruple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11030": { + "combination_display": [], + "compose_number": 0, + "display": "T2 Quintuple 533mm Magnetic Torpedo Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45200", + "id": 11030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Quintuple 533mm Magnetic Torpedo Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11031": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Messerschmitt Me-155A Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/47100", + "id": 11031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Messerschmitt Me-155A Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11032": { + "combination_display": [], + "compose_number": 0, + "display": "T3 A7M Reppü Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37300", + "id": 11032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 A7M Reppü Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11033": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Aichi B7A Ryusei Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38200", + "id": 11033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Aichi B7A Ryusei Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11034": { + "combination_display": [], + "compose_number": 0, + "display": "Improved Sonar T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/3000", + "id": 11034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Improved Sonar T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11035": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Mark 16 Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15100", + "id": 11035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Mark 16 Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11036": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only Type 95 Oxygen Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/35500", + "id": 11036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only Type 95 Oxygen Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11037": { + "combination_display": [], + "compose_number": 0, + "display": "Submarine-only G7e Homing Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/45400", + "id": 11037, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine-only G7e Homing Torpedo T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11038": { + "combination_display": [], + "compose_number": 0, + "display": "Single 138.6mm Main Gun (Mle 1929) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50100", + "id": 11038, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 138.6mm Main Gun (Mle 1929) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11039": { + "combination_display": [], + "compose_number": 0, + "display": "Quadruple 380mm Main Gun (Mle 1935) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50400", + "id": 11039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Quadruple 380mm Main Gun (Mle 1935) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11040": { + "combination_display": [], + "compose_number": 0, + "display": "Single 90mm High-Angle Gun (M1939) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55100", + "id": 11040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Single 90mm High-Angle Gun (M1939) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11041": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (M1927) T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55200", + "id": 11041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (M1927) T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11042": { + "combination_display": [], + "compose_number": 0, + "display": "B-13 Twin 130mm B-2LM Main Gun T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85000", + "id": 11042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "B-13 Twin 130mm B-2LM Main Gun T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11043": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Triple 152mm Main Gun (B-38 MK5) Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85120", + "id": 11043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Triple 152mm Main Gun (B-38 MK5) Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11046": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 203mm Main Gun (Mle 1931) T3 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50860", + "id": 11046, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 203mm Main Gun (Mle 1931) T3 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11047": { + "combination_display": [], + "compose_number": 0, + "display": "Kawanishi N1K3-A T0 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/37400", + "id": 11047, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Kawanishi N1K3-A Shiden Kai 2 T0 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11048": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 152mm Model 1934 Main Gun T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55600", + "id": 11048, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 152mm Model 1934 Main Gun T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11049": { + "combination_display": [], + "compose_number": 0, + "display": "Triple 381mm M1934 Main Gun T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55000", + "id": 11049, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Triple 381mm M1934 Main Gun T3 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11050": { + "combination_display": [], + "compose_number": 0, + "display": "533mm Quintuple Torpedo Mount Mk 17 T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/15240", + "id": 11050, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "533mm Quintuple Torpedo Mount Mk 17 T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11051": { + "combination_display": [], + "compose_number": 0, + "display": "Sea Hornet T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27320", + "id": 11051, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Sea Hornet T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11052": { + "combination_display": [], + "compose_number": 0, + "display": "Bréguet BR.810 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/51240", + "id": 11052, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Bréguet BR.810 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11053": { + "combination_display": [], + "compose_number": 0, + "display": "Sea Fury T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/27300", + "id": 11053, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Sea Fury T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11054": { + "combination_display": [], + "compose_number": 0, + "display": "F6F Hellcat (HVAR-Mounted) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/17440", + "id": 11054, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "F6F Hellcat (HVAR-Mounted) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "11055": { + "combination_display": [], + "compose_number": 0, + "display": "T3 Old Heavy Cannon Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/150040", + "id": 11055, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Old Heavy Cannon Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13000": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Twin 381mm Main Gun - Variant Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24300", + "id": 13000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Twin 381mm Main Gun - Variant Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13001": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Prototype Triple 381mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/24160", + "id": 13001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Prototype Triple 381mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13002": { + "combination_display": [], + "compose_number": 0, + "display": "T0 410mm Mounted Gun (Type 3 Shell) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/34100", + "id": 13002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 410mm Mounted Gun (Type 3 Shell) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13003": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Prototype Triple 410mm Mounted Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/34180", + "id": 13003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Prototype Triple 410mm Mounted Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13004": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Prototype Triple 203mm Main Gun (SK C) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43060", + "id": 13004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Prototype Triple 203mm Main Gun (SK C) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13005": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Prototype Triple 203mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/7300", + "id": 13005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Prototype Triple 203mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13006": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Prototype Triple 152mm AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/22260", + "id": 13006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Prototype Triple 152mm AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13007": { + "combination_display": [], + "compose_number": 0, + "display": "T0 Twin 40mm Bofors STAAG Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26600", + "id": 13007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 Twin 40mm Bofors STAAG Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13008": { + "combination_display": [], + "compose_number": 0, + "display": "T0 100mm Mounted AA Gun Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36560", + "id": 13008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 100mm Mounted AA Gun Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13009": { + "combination_display": [], + "compose_number": 0, + "display": "T0 High Performance Air Radar Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1160", + "id": 13009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 High Performance Air Radar Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13010": { + "combination_display": [], + "compose_number": 0, + "display": "T0 High Performance Hydraulic Steering Gear Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1760", + "id": 13010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T0 High Performance Hydraulic Steering Gear Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13011": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 40mm Bofors \"Hazemeyer\" AA Gun T0 Design ", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26620", + "id": 13011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 40mm Bofors \"Hazemeyer\" AA Gun T0 Design ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13012": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 457mm Main Gun (18\" MKA) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/14500", + "id": 13012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 457mm Main Gun (18\" MKA) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13013": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 406mm Main Gun (SK C/34) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44200", + "id": 13013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 406mm Main Gun (SK C/34) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13014": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 152mm Main Gun (DP MK17) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/12200", + "id": 13014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 152mm Main Gun (DP MK17) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13015": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype 40mm AA Gun (Type 5) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/36700", + "id": 13015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype 40mm AA Gun (Type 5) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13016": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 310mm Main Gun (Type 0) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/33100", + "id": 13016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 310mm Main Gun (Type 0) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13017": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 37mm AA Gun (Mle 1936) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50600", + "id": 13017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 37mm AA Gun (Mle 1936) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13018": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 234mm Main Gun (9.2\" MK XII) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/23100", + "id": 13018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 234mm Main Gun (9.2\" MK XII) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13019": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 234mm Main Gun (9.2\" MK XII) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/23120", + "id": 13019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 234mm Main Gun (9.2\" MK XII) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13020": { + "combination_display": [], + "compose_number": 0, + "display": "Twin 114mm DP (4.5\" MK IV) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/21600", + "id": 13020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Twin 114mm DP (4.5\" MK IV) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13021": { + "combination_display": [], + "compose_number": 0, + "display": "Sextuple Bofors 40mm AA Gun T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/26660", + "id": 13021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Sextuple Bofors 40mm AA Gun T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13022": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 305mm Main Gun (SK C/39) T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44300", + "id": 13022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 305mm Main Gun (SK C/39) T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13023": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 406mm/50 Main Gun T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/51000", + "id": 13023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 406mm/50 Main Gun T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13024": { + "combination_display": [], + "compose_number": 0, + "display": "High Performance Fire Control Radar T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/1260", + "id": 13024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "High Performance Fire Control Radar T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13025": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 305mm SK C/39 Main Gun T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/44400", + "id": 13025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 305mm SK C/39 Main Gun T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13026": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype BF-109G T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/47160", + "id": 13026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype BF-109G T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13027": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 90mm Model 1939 High Angle Gun T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55160", + "id": 13027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 90mm Model 1939 High Angle Gun T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13028": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 406mm Model 1940 Main Gun T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/55900", + "id": 13028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 406mm Model 1940 Main Gun T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13029": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Saiun Kai T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/38300", + "id": 13029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Saiun Kai T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13030": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Tenrai T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/39340", + "id": 13030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Tenrai T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13031": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Quadruple 152mm Main Gun Mount Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/22280", + "id": 13031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Quadruple 152mm Main Gun Mount Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13032": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Quadruple 330mm Mle 1931 (CB Only) Main Gun Mount Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50360", + "id": 13032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Quadruple 330mm Mle 1931 (CB Only) Main Gun Mount Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13033": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Su-2 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85540", + "id": 13033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Su-2 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13034": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype VIT-2 (VK-107) Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/85560", + "id": 13034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype VIT-2 (VK-107) Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13035": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Quadruple 30mm AA Gun Mount Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46400", + "id": 13035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Quadruple 30mm AA Gun Mount Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13036": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 130mm Model 1936 Main Gun Mount Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/56100", + "id": 13036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 130mm Model 1936 Main Gun Mount Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13037": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 406mm Mk6 Main Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/14540", + "id": 13037, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 406mm Mk6 Main Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13038": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 203mm SKC Main Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/43160", + "id": 13038, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 203mm SKC Main Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13039": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 150mm Type 5 High-Angle Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/32360", + "id": 13039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 150mm Type 5 High-Angle Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13040": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Twin 150mm TbtsK C42T Main Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/42360", + "id": 13040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Twin 150mm TbtsK C42T Main Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13041": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype Triple 380mm Mle 1935 Main Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/50480", + "id": 13041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Triple 380mm Mle 1935 Main Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "13042": { + "combination_display": [], + "compose_number": 0, + "display": "Prototype 55mm Gerät 58 AA Gun Mount T0 Design", + "display_effect": "", + "display_icon": [], + "icon": "Equips/46420", + "id": 13042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype 55mm Gerät 58 AA Gun Mount T0 Design", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 9, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "14001": { + "combination_display": [], + "compose_number": 0, + "display": "Can be exchanged for one of the following SR gear blueprints:\nPrototype Triple 381mm Main Gun T0 Design\nPrototype Triple 410mm Mounted Gun T0 Design\nPrototype Triple 203mm Main Gun (SK C) T0 Design\nPrototype Triple 203mm Main Gun T0 Design\nPrototype Triple 152mm Main Gun T0 Design\nT0 100mm Mounted AA Gun Design", + "display_effect": "", + "display_icon": [ + [ + 2, + 13001, + 1 + ], + [ + 2, + 13003, + 1 + ], + [ + 2, + 13004, + 1 + ], + [ + 2, + 13005, + 1 + ], + [ + 2, + 13006, + 1 + ], + [ + 2, + 13008, + 1 + ] + ], + "icon": "Props/14001", + "id": 14001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13001, + 1 + ], + [ + 2, + 13003, + 1 + ], + [ + 2, + 13004, + 1 + ], + [ + 2, + 13005, + 1 + ], + [ + 2, + 13006, + 1 + ], + [ + 2, + 13008, + 1 + ] + ], + "virtual_type": 0 + }, + "14002": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to one of the following SR gear blueprints:\nPrototype Twin 406mm Main Gun (SK C/34) T0 Design\nPrototype Triple 152mm Main Gun (DP MK17) T0 Design\nPrototype 40mm AA Gun (Type 5) T0 Design\nPrototype Triple 310mm Main Gun (Type 0) T0 Design\nTwin 37mm AA Gun (Mle 1936) T0 Design", + "display_effect": "", + "display_icon": [ + [ + 2, + 13013, + 1 + ], + [ + 2, + 13014, + 1 + ], + [ + 2, + 13015, + 1 + ], + [ + 2, + 13016, + 1 + ], + [ + 2, + 13017, + 1 + ] + ], + "icon": "Props/14002", + "id": 14002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13013, + 1 + ], + [ + 2, + 13014, + 1 + ], + [ + 2, + 13015, + 1 + ], + [ + 2, + 13016, + 1 + ], + [ + 2, + 13017, + 1 + ] + ], + "virtual_type": 0 + }, + "14003": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to one of the following SR gear blueprints:\nPrototype Twin 234mm Main Gun (9.2\" MK XII) T0 Design\nTwin 114mm DP (4.5\" MK IV) T0 Design\nSextuple Bofors 40mm AA Gun T0 Design\nPrototype Triple 305mm Main Gun (SK C/39) T0 Design\nPrototype Triple 406mm/50 Main Gun T0 Design", + "display_effect": "", + "display_icon": [ + [ + 2, + 13018, + 1 + ], + [ + 2, + 13020, + 1 + ], + [ + 2, + 13021, + 1 + ], + [ + 2, + 13022, + 1 + ], + [ + 2, + 13023, + 1 + ] + ], + "icon": "Props/14003", + "id": 14003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13018, + 1 + ], + [ + 2, + 13020, + 1 + ], + [ + 2, + 13021, + 1 + ], + [ + 2, + 13022, + 1 + ], + [ + 2, + 13023, + 1 + ] + ], + "virtual_type": 0 + }, + "14004": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to one of the following SR gear blueprints:\nPrototype Triple 305mm SK C/39 Main Gun T0 Design\nPrototype BF-109 T0 Design\nPrototype Twin 90mm Model 1939 High Angle Gun T0 Design\nPrototype Triple 406mm Model 1940 Main Gun T0 Design\nPrototype Saiun Kai T0 Design", + "display_effect": "", + "display_icon": [ + [ + 2, + 13025, + 1 + ], + [ + 2, + 13026, + 1 + ], + [ + 2, + 13027, + 1 + ], + [ + 2, + 13028, + 1 + ], + [ + 2, + 13029, + 1 + ] + ], + "icon": "Props/14004", + "id": 14004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 4", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13025, + 1 + ], + [ + 2, + 13026, + 1 + ], + [ + 2, + 13027, + 1 + ], + [ + 2, + 13028, + 1 + ], + [ + 2, + 13029, + 1 + ] + ], + "virtual_type": 0 + }, + "14005": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to one of the following SR gear blueprints:\nPrototype Quadruple 330mm Mle 1931 (CB Only) Main Gun Mount T0 Design\nPrototype Su-2 T0 Design\nPrototype VIT-2 (VK-107) T0 Design\nPrototype Quadruple 30mm AA Gun Mount T0 Design\nPrototype Twin 130mm Model 1936 Main Gun Mount T0 Design", + "display_effect": "", + "display_icon": [ + [ + 2, + 13032, + 1 + ], + [ + 2, + 13033, + 1 + ], + [ + 2, + 13034, + 1 + ], + [ + 2, + 13035, + 1 + ], + [ + 2, + 13036, + 1 + ] + ], + "icon": "Props/14005", + "id": 14005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 5", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13032, + 1 + ], + [ + 2, + 13033, + 1 + ], + [ + 2, + 13034, + 1 + ], + [ + 2, + 13035, + 1 + ], + [ + 2, + 13036, + 1 + ] + ], + "virtual_type": 0 + }, + "14006": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to one of the following SR gear blueprints:\nPrototype Triple 406mm Mk6 Main Gun Mount T0 Design\nPrototype Triple 150mm Type 5 High-Angle Gun Mount T0 Design\nPrototype Twin 150mm TbtsK C42T Main Gun Mount T0 Design\nPrototype Triple 380mm Mle 1935 Main Gun Mount T0 Design\nPrototype 55mm Gerät 58 AA Gun Mount T0 Design\n", + "display_effect": "", + "display_icon": [ + [ + 2, + 13037, + 1 + ], + [ + 2, + 13039, + 1 + ], + [ + 2, + 13040, + 1 + ], + [ + 2, + 13041, + 1 + ], + [ + 2, + 13042, + 1 + ] + ], + "icon": "Props/14006", + "id": 14006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Weapon Blueprint - Series 6", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 13037, + 1 + ], + [ + 2, + 13039, + 1 + ], + [ + 2, + 13040, + 1 + ], + [ + 2, + 13041, + 1 + ], + [ + 2, + 13042, + 1 + ] + ], + "virtual_type": 0 + }, + "15001": { + "combination_display": [], + "compose_number": 0, + "display": "A Medal of Honor granted after retiring a ship. Use to apply for rare ships.", + "display_effect": "", + "display_icon": [], + "icon": "Props/medal", + "id": 15001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Medal of Honor", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15002": { + "combination_display": [], + "compose_number": 0, + "display": "This is a description", + "display_effect": "", + "display_icon": [], + "icon": "Props/nengyuanshi", + "id": 15002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Energy Stone", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15003": { + "combination_display": [], + "compose_number": 0, + "display": "Use to instantly finish construction", + "display_effect": "", + "display_icon": [], + "icon": "Props/15003", + "id": 15003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Quick Finisher", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15004": { + "combination_display": [], + "compose_number": 0, + "display": "Use to instantly complete a ship's resting period", + "display_effect": "", + "display_icon": [], + "icon": "Props/nengyuanshi", + "id": 15004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Rest Accelerant", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15005": { + "combination_display": [], + "compose_number": 0, + "display": "Use to increase available space in your Dorm", + "display_effect": "", + "display_icon": [], + "icon": "Props/kuojian_", + "id": 15005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Expansion License", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_dorm_lv_up", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15006": { + "combination_display": [], + "compose_number": 0, + "display": "Use to promise yourself to a ship", + "display_effect": "", + "display_icon": [], + "icon": "Props/ring", + "id": 15006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Promise Ring", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15008": { + "combination_display": [], + "compose_number": 0, + "display": "Chips, derived from Wisdom Cubes, used for Cognitive Awakening. Can be used on ships that have reached Level 100 or higher to increase their Level Cap. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/15008", + "id": 15008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cognitive Chips ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15009": { + "combination_display": [], + "compose_number": 0, + "display": "Certification is required to change your identification, which can be done by clicking the Change button next to your avatar on the upper-left corner of your profile page. \nYou can only change your name once every 30 days. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/15009", + "id": 15009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Identity Change Certification ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15010": { + "combination_display": [], + "compose_number": 0, + "display": "A device that was once used to amplify the receptibility of incoming distress signals. Can be used to randomly obtain one of the following gear designs: Mark 16 Submarine Torpedo T3 Design, Type 95 Submarine Torpedo T3 Design, G7e Acoustic Homing Submarine Torpedo T3 Design", + "display_effect": "", + "display_icon": [], + "icon": "Props/15010", + "id": 15010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Distress Signal Reception Device (Obsolete)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "15010", + "virtual_type": 0 + }, + "15011": { + "combination_display": [], + "compose_number": 0, + "display": "Used to deepen your relations with The Idolmaster collab characters. This item remains in your inventory even after the Azur Anthem event ends. This item does not let you rename a The Idolmaster collab character. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/tiara", + "id": 15011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Unity Tiara ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15012": { + "combination_display": [], + "compose_number": 0, + "display": "Complex arrays, derived from Wisdom Cubes, used for Cognitive Awakening. Can be used on ships that have reached Level 120 and have been fully Limit Broken to increase their Level Cap.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15012", + "id": 15012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cognitive Array", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15013": { + "combination_display": [], + "compose_number": 0, + "display": "A voucher that allows you to automatically complete a cruise mission. This item does not expire even after the campaign season ends.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15013", + "id": 15013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cruise Missions Voucher", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15014": { + "combination_display": [], + "compose_number": 0, + "display": "Resource used to make and uncap Augment Modules.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15014", + "id": 15014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Core", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15015": { + "combination_display": [], + "compose_number": 0, + "display": "Resource used to craft, upgrade and convert Augment Modules.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15015", + "id": 15015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Stone T1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 24, + "usage": "usage_spweapon", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "15016": { + "combination_display": [], + "compose_number": 0, + "display": "Resource used to craft, upgrade and convert Augment Modules.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15016", + "id": 15016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Stone T2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 24, + "usage": "usage_spweapon", + "usage_arg": [ + 100 + ], + "virtual_type": 0 + }, + "15017": { + "combination_display": [], + "compose_number": 0, + "display": "Resource used to craft, upgrade and convert Augment Modules.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15017", + "id": 15017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Stone T3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 24, + "usage": "usage_spweapon", + "usage_arg": [ + 1000 + ], + "virtual_type": 0 + }, + "15020": { + "combination_display": [], + "compose_number": 0, + "display": "Used to reroll the attribute bonuses obtained from Conversion.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15019", + "id": 15020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Conversion Stone T1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "15021": { + "combination_display": [], + "compose_number": 0, + "display": "Used to reroll the attribute bonuses obtained from Conversion.", + "display_effect": "", + "display_icon": [], + "icon": "Props/15020", + "id": 15021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Augment Module Conversion Stone T2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "16001": { + "combination_display": [], + "compose_number": 6, + "display": "Use to grant additional EXP when training a ship's offensive skills.\n*May use 6 to craft 1 T2 Offensive Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16001", + "id": 16001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Offensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16002, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 7200, + 100, + 1, + 50 + ], + "virtual_type": 0 + }, + "16002": { + "combination_display": [], + "compose_number": 4, + "display": "Use to grant additional EXP when training a ship's offensive skills.\n*May use 4 to craft 1 T3 Offensive Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16002", + "id": 16002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Offensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16003, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 14400, + 300, + 1, + 50 + ], + "virtual_type": 0 + }, + "16003": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's offensive skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16003", + "id": 16003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Offensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 28800, + 800, + 1, + 50 + ], + "virtual_type": 0 + }, + "16004": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's offensive skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16004", + "id": 16004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Offensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 43200, + 1500, + 1, + 100 + ], + "virtual_type": 0 + }, + "16011": { + "combination_display": [], + "compose_number": 6, + "display": "Use to grant additional EXP when training a ship's defensive skills \n*May use 6 to craft 1 T2 Defensive Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16011", + "id": 16011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Defensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16012, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 7200, + 100, + 2, + 50 + ], + "virtual_type": 0 + }, + "16012": { + "combination_display": [], + "compose_number": 4, + "display": "Use to grant additional EXP when training a ship's defensive skills.\n*May use 4 to craft 1 T3 Defensive Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16012", + "id": 16012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Defensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16013, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 14400, + 300, + 2, + 50 + ], + "virtual_type": 0 + }, + "16013": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's defensive skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16013", + "id": 16013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Defensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 28800, + 800, + 2, + 50 + ], + "virtual_type": 0 + }, + "16014": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's defensive skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16014", + "id": 16014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Defensive Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 43200, + 1500, + 2, + 100 + ], + "virtual_type": 0 + }, + "16021": { + "combination_display": [], + "compose_number": 6, + "display": "Use to grant additional EXP when training a ship's support skills.\n*May use 6 to craft 1 T2 Support Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16021", + "id": 16021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Support Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16022, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 7200, + 100, + 3, + 50 + ], + "virtual_type": 0 + }, + "16022": { + "combination_display": [], + "compose_number": 4, + "display": "Use to grant additional EXP when training a ship's support skills.\n*May use 4 to craft 1 T3 Support Skill Book.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16022", + "id": 16022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Support Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 16023, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 14400, + 300, + 3, + 50 + ], + "virtual_type": 0 + }, + "16023": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's support skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16023", + "id": 16023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Support Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 28800, + 800, + 3, + 50 + ], + "virtual_type": 0 + }, + "16024": { + "combination_display": [], + "compose_number": 0, + "display": "Use to grant additional EXP when training a ship's support skills", + "display_effect": "", + "display_icon": [], + "icon": "Props/16024", + "id": 16024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Support Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 43200, + 1500, + 3, + 100 + ], + "virtual_type": 0 + }, + "16031": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used in the META Lab to grant a META shipgirl 100 Tactical Research EXP.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16031", + "id": 16031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 META Universal Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 25, + "usage": "usage_undefined", + "usage_arg": "100", + "virtual_type": 0 + }, + "16032": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used in the META Lab to grant a META shipgirl 1,000 Tactical Research EXP.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16032", + "id": 16032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 META Universal Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 25, + "usage": "usage_undefined", + "usage_arg": "1000", + "virtual_type": 0 + }, + "16033": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used in the META Lab to grant a META shipgirl 10,000 Tactical Research EXP.", + "display_effect": "", + "display_icon": [], + "icon": "Props/16033", + "id": 16033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 META Universal Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 25, + "usage": "usage_undefined", + "usage_arg": "10000", + "virtual_type": 0 + }, + "16501": { + "combination_display": [], + "compose_number": 0, + "display": "An EXP Data Pack produced by the Lecture Hall. Can be used to grant 3,000 EXP to any ship of your choosing (Storage limit: 3,000).", + "display_effect": "", + "display_icon": [], + "icon": "Props/16501", + "id": 16501, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 3000, + "name": "T1 EXP Data Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 22, + "usage": "usage_undefined", + "usage_arg": "3000", + "virtual_type": 0 + }, + "16502": { + "combination_display": [], + "compose_number": 0, + "display": "An EXP Data Pack produced by the Lecture Hall. Can be used to grant 15,000 EXP to any ship of your choosing (Storage limit: 500).", + "display_effect": "", + "display_icon": [], + "icon": "Props/16502", + "id": 16502, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 500, + "name": "T2 EXP Data Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 22, + "usage": "usage_undefined", + "usage_arg": "15000", + "virtual_type": 0 + }, + "17001": { + "combination_display": [], + "compose_number": 0, + "display": "A part most commonly used while improving gear.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17001", + "id": 17001, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 General Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17002": { + "combination_display": [], + "compose_number": 0, + "display": "A part most commonly used while improving gear.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17002", + "id": 17002, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 General Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17003": { + "combination_display": [], + "compose_number": 0, + "display": "A part most commonly used while improving gear.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17003", + "id": 17003, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 General Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17004": { + "combination_display": [], + "compose_number": 0, + "display": "A part most commonly used while improving gear.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17004", + "id": 17004, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 General Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17011": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve main guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17011", + "id": 17011, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Main Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17012": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve main guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17012", + "id": 17012, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Main Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17013": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve main guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17013", + "id": 17013, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Main Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17014": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve main guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17014", + "id": 17014, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Main Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17021": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve torpedoes", + "display_effect": "", + "display_icon": [], + "icon": "Props/17021", + "id": 17021, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Torpedo Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17022": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve torpedoes", + "display_effect": "", + "display_icon": [], + "icon": "Props/17022", + "id": 17022, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Torpedo Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17023": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve torpedoes", + "display_effect": "", + "display_icon": [], + "icon": "Props/17023", + "id": 17023, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Torpedo Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17024": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve torpedoes", + "display_effect": "", + "display_icon": [], + "icon": "Props/17024", + "id": 17024, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Torpedo Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17031": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve anti-air guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17031", + "id": 17031, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Anti-Air Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17032": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve anti-air guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17032", + "id": 17032, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Anti-Air Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17033": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve anti-air guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17033", + "id": 17033, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Anti-Air Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17034": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve anti-air guns", + "display_effect": "", + "display_icon": [], + "icon": "Props/17034", + "id": 17034, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Anti-Air Gun Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17041": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve aircrafts", + "display_effect": "", + "display_icon": [], + "icon": "Props/17041", + "id": 17041, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Aircraft Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17042": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve aircrafts", + "display_effect": "", + "display_icon": [], + "icon": "Props/17042", + "id": 17042, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Aircraft Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17043": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve aircrafts", + "display_effect": "", + "display_icon": [], + "icon": "Props/17043", + "id": 17043, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Aircraft Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17044": { + "combination_display": [], + "compose_number": 0, + "display": "Use this part to improve aircrafts", + "display_effect": "", + "display_icon": [], + "icon": "Props/17044", + "id": 17044, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Aircraft Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17990": { + "combination_display": [], + "compose_number": 0, + "display": "Upgrade material used to further enhance gear of SR rarity or below.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17990", + "id": 17990, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prototype Gear Upgrade Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "17991": { + "combination_display": [], + "compose_number": 0, + "display": "Upgrade material used to further enhance gear of UR rarity or below.", + "display_effect": "", + "display_icon": [], + "icon": "Props/17991", + "id": 17991, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Specialized Gear Upgrade Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18000": { + "combination_display": [], + "compose_number": 0, + "display": "Retrofit Blueprint Plate", + "display_effect": "", + "display_icon": [], + "icon": "Props/nengyuanshi", + "id": 18000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Retrofit Blueprint Plate", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18001": { + "combination_display": [], + "compose_number": 6, + "display": "Use to improve Destroyers\nMay combine 6 to craft 1 T2 Destroyer Retrofit Blueprint", + "display_effect": "", + "display_icon": [], + "icon": "Props/18001", + "id": 18001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Destroyer Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 18002, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18002": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Destroyers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18002", + "id": 18002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Destroyer Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18003": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Destroyers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18003", + "id": 18003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Destroyer Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18011": { + "combination_display": [], + "compose_number": 6, + "display": "Use to improve Cruisers\nMay combine 6 to craft 1 T2 Cruiser Retrofit Blueprint", + "display_effect": "", + "display_icon": [], + "icon": "Props/18011", + "id": 18011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Cruiser Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 18012, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18012": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Cruisers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18012", + "id": 18012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Cruiser Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18013": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Cruisers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18013", + "id": 18013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Cruiser Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18021": { + "combination_display": [], + "compose_number": 6, + "display": "Use to improve Battleships\nMay combine 6 to craft 1 T2 Battleship Retrofit Blueprint", + "display_effect": "", + "display_icon": [], + "icon": "Props/18021", + "id": 18021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Battleship Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 18022, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18022": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Battleships", + "display_effect": "", + "display_icon": [], + "icon": "Props/18022", + "id": 18022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Battleship Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18023": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Battleships", + "display_effect": "", + "display_icon": [], + "icon": "Props/18023", + "id": 18023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Battleship Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18031": { + "combination_display": [], + "compose_number": 6, + "display": "Use to improve Carriers\nMay combine 6 to craft 1 T2 Carrier Retrofit Blueprint", + "display_effect": "", + "display_icon": [], + "icon": "Props/18031", + "id": 18031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Carrier Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 18032, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18032": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Carriers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18032", + "id": 18032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Carrier Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18033": { + "combination_display": [], + "compose_number": 0, + "display": "Use to improve Carriers", + "display_effect": "", + "display_icon": [], + "icon": "Props/18033", + "id": 18033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Carrier Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18101": { + "combination_display": [], + "compose_number": 0, + "display": "Metals that were refined in a factory. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18101", + "id": 18101, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Refined Metals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18102": { + "combination_display": [], + "compose_number": 0, + "display": "Notably high-quality metals, produced using a special smelting process. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18102", + "id": 18102, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Specially Smelted Metals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18103": { + "combination_display": [], + "compose_number": 0, + "display": "Extremely pure metals produced through a massively labor-intensive refinement process. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18103", + "id": 18103, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Ultra High-Purity Metals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18104": { + "combination_display": [], + "compose_number": 0, + "display": "Electronic components graded for ordinary consumer devices. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18104", + "id": 18104, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Consumer-Grade Electronic Components", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18105": { + "combination_display": [], + "compose_number": 0, + "display": "Electronic components graded for high-end industrial devices. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18105", + "id": 18105, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Industrial-Grade Electronic Components", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18106": { + "combination_display": [], + "compose_number": 0, + "display": "Electronic components graded for cutting-edge military devices. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18106", + "id": 18106, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Military-Grade Electronic Components", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18107": { + "combination_display": [], + "compose_number": 0, + "display": "\"Black powder\" gunpowder that saw use in a myriad of old munitions. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18107", + "id": 18107, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Unbranded Gunpowder", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18108": { + "combination_display": [], + "compose_number": 0, + "display": "A high plastic-content gunpowder mixture boasting a larger explosive yield. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18108", + "id": 18108, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Poudre B Gunpowder", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18109": { + "combination_display": [], + "compose_number": 0, + "display": "Military-grade high-blast explosive made with lightweight materials. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18109", + "id": 18109, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "HBX Blend Gunpowder", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18110": { + "combination_display": [], + "compose_number": 0, + "display": "Organic rubber made from refined tree sap. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18110", + "id": 18110, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Natural Rubber", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18111": { + "combination_display": [], + "compose_number": 0, + "display": "Man-made materials that mimic the properties of rubber. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18111", + "id": 18111, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synthetic Elastic Materials", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18112": { + "combination_display": [], + "compose_number": 0, + "display": "Artificial rubber specially designed to be resistant to wear and tear. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18112", + "id": 18112, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "High-Durability Elastomers", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18113": { + "combination_display": [], + "compose_number": 0, + "display": "Materials that are able to conduct electricity. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18113", + "id": 18113, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Conductive Metals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18114": { + "combination_display": [], + "compose_number": 0, + "display": "A metal alloy with far superior conductive properties. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18114", + "id": 18114, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Superconductive Metals", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18115": { + "combination_display": [], + "compose_number": 0, + "display": "A metal alloy which has lower weight by volume at no cost to its durability. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18115", + "id": 18115, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lightweight Alloys", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18116": { + "combination_display": [], + "compose_number": 0, + "display": "An alloy with improved durability, pliability, and resistance to corrosion, granting it a multitude of applications. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18116", + "id": 18116, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Corrosion-Resistant Alloys", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18117": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of an SR-rarity main gun. Used in the Gear Laboratory .", + "display_effect": "", + "display_icon": [], + "icon": "Props/18117", + "id": 18117, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Main Gun Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18118": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of a UR-rarity main gun. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18118", + "id": 18118, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "UR Main Gun Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18119": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of an SR-rarity torpedo. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18119", + "id": 18119, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Torpedo Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18120": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of a UR-rarity torpedo. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18120", + "id": 18120, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "UR Torpedo Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18121": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of an SR-rarity anti-air gun. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18121", + "id": 18121, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Anti-Air Gun Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18122": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of a UR-rarity anti-air gun. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18122", + "id": 18122, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "UR Anti-Air Gun Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18123": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of an SR-rarity aircraft. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18123", + "id": 18123, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Aircraft Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18124": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprints for the development of a UR-rarity aircraft. Used in the Gear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18124", + "id": 18124, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "UR Aircraft Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18125": { + "combination_display": [], + "compose_number": 0, + "display": "A field performance report on a very common piece of ordnance. Used in theGear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18125", + "id": 18125, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Ordnance Testing Report", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18126": { + "combination_display": [], + "compose_number": 8, + "display": "A field performance report on an experimental piece of ordnance. Used in the Gear Lab.\n*May use 8 to craft 1 T3 Ordnance Testing Report.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18126", + "id": 18126, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Ordnance Testing Report", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 18127, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "18127": { + "combination_display": [], + "compose_number": 0, + "display": "A field performance report on a top secret piece of ordnance. Used in theGear Laboratory.", + "display_effect": "", + "display_icon": [], + "icon": "Props/18127", + "id": 18127, + "index": [], + "is_world": 1, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Ordnance Testing Report", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20001": { + "combination_display": [], + "compose_number": 0, + "display": "A special material primarily used for manufacturing a ship's keel", + "display_effect": "", + "display_icon": [], + "icon": "Props/20001", + "id": 20001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Wisdom Cube", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20010": { + "combination_display": [], + "compose_number": 0, + "display": "Reduces the training time of a Cat Box by 20 minutes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/20010", + "id": 20010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cat Box Quick Finisher", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_reduce_commander_time", + "usage_arg": [ + 1200 + ], + "virtual_type": 0 + }, + "20011": { + "combination_display": [], + "compose_number": 0, + "display": "A plain box purchased from Akashi. What might be inside...?", + "display_effect": "", + "display_icon": [], + "icon": "Props/20011", + "id": 20011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Rare Cat Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20012": { + "combination_display": [], + "compose_number": 0, + "display": "A slick box purchased from Akashi. What might be inside...?", + "display_effect": "", + "display_icon": [], + "icon": "Props/20012", + "id": 20012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Elite Cat Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20013": { + "combination_display": [], + "compose_number": 0, + "display": "An ornate box purchased from Akashi. What might be inside...?", + "display_effect": "", + "display_icon": [], + "icon": "Props/20013", + "id": 20013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Super Rare Cat Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20101": { + "combination_display": [], + "compose_number": 0, + "display": "A compilation of experimental data from the Research Department, can be used to add 10,000 EXP towards PR Series 1 Combat Data Collection missions.(Can be converted into Prototype Cores).", + "display_effect": "", + "display_icon": [], + "icon": "Props/20101", + "id": 20101, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Combat Data Pack - Series 1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 2 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 18, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20102": { + "combination_display": [], + "compose_number": 0, + "display": "A compilation of experimental data from the Research Department, can be used to add 10,000 EXP towards PR Series 2 Combat Data Collection missions.(Can be converted into Prototype Cores).", + "display_effect": "", + "display_icon": [], + "icon": "Props/20102", + "id": 20102, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Combat Data Pack - Series 2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 2 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 18, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20103": { + "combination_display": [], + "compose_number": 0, + "display": "A compilation of experimental data from the Research Department, can be used to add 10,000 EXP towards PR Series 3 Combat Data Collection missions.(Can be converted into Prototype Cores).", + "display_effect": "", + "display_icon": [], + "icon": "Props/20103", + "id": 20103, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Combat Data Pack - Series 3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 2 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 18, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20104": { + "combination_display": [], + "compose_number": 0, + "display": "A compilation of experimental data from the Research Department, can be used to add 10,000 EXP towards PR Series 4 Combat Data Collection missions.(Can be converted into Prototype Cores).", + "display_effect": "", + "display_icon": [], + "icon": "Props/20104", + "id": 20104, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Combat Data Pack - Series 4", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 2 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 18, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "20105": { + "combination_display": [], + "compose_number": 0, + "display": "A compilation of experimental data from the Research Department, can be used to add 10,000 EXP towards PR Series 5 Combat Data Collection missions.(Can be converted into Prototype Cores).", + "display_effect": "", + "display_icon": [], + "icon": "Props/20105", + "id": 20105, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Combat Data Pack - Series 5", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 2 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 18, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21000": { + "combination_display": [], + "compose_number": 0, + "display": "Can be exchanged for items in the META Shop.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21000", + "id": 21000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Crystal Fragment", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 2, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21001": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Hiryuu META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21001", + "id": 21001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal - Hiryuu ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21002": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Ark Royal META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21002", + "id": 21002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal - Ark Royal", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21003": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Helena META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21003", + "id": 21003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Helena", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21004": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Souryuu META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21004", + "id": 21004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Souryuu", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21005": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Fusou META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21005", + "id": 21005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Fusou", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21006": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Hiyou META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21006", + "id": 21006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Hiyou", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21007": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Gneisenau META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21007", + "id": 21007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Gneisenau", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21008": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Junyou META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21008", + "id": 21008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Junyou", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21009": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Scharnhorst META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21009", + "id": 21009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Scharnhorst", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21010": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Yamashiro META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21010", + "id": 21010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Yamashiro", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21011": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Memphis META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21011", + "id": 21011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Memphis", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21012": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Repulse META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21012", + "id": 21012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Repulse", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21013": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Trento META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21013", + "id": 21013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Trento", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21014": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Renown META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21014", + "id": 21014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Renown", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21015": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Hunter META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21015", + "id": 21015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Hunter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21016": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Fortune META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21016", + "id": 21016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Fortune", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21017": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Arizona META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21017", + "id": 21017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Arizona", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21018": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Sheffield META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21018", + "id": 21018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Sheffield", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21019": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Queen Elizabeth META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21019", + "id": 21019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Queen Elizabeth", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21020": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of La Galissonnière META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21020", + "id": 21020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – La Galissonnière", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21021": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of U-556 META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21021", + "id": 21021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – U-556", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21022": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Vestal META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21022", + "id": 21022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Vestal", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21023": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Algérie META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21023", + "id": 21023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Algérie", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21024": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Hatakaze META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21024", + "id": 21024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Hatakaze META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21025": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Jintsuu META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21025", + "id": 21025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Jintsuu", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21026": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Princeton META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21026", + "id": 21026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Princeton", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21027": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Erebus META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21027", + "id": 21027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Erebus", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21028": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Kirov META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21028", + "id": 21028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Kirov", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21029": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Kimberly META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21029", + "id": 21029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Kimberly", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21030": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Pamiat' Merkuria META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21030", + "id": 21030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Pamiat' Merkuria", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21031": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Rodney META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21031", + "id": 21031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Rodney META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21032": { + "combination_display": [], + "compose_number": 0, + "display": "An item that increases the potential of Vampire META. Used in the META Lab during Somatic Activation.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21032", + "id": 21032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "META Crystal – Vampire META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21101": { + "combination_display": [], + "compose_number": 0, + "display": "Rare equipment used to improve the firepower capabilities of META ships during Restoration.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21101", + "id": 21101, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Crystallized Heat-Resistant Steel", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21111": { + "combination_display": [], + "compose_number": 0, + "display": "Rare equipment used to improve the aviation capabilities of META ships during Restoration.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21111", + "id": 21111, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Nanoceramic Alloy", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21121": { + "combination_display": [], + "compose_number": 0, + "display": "Rare equipment used to improve the reloading capabilities of META ships during Restoration.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21121", + "id": 21121, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Neuroplastic Prosthetic Arm", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21131": { + "combination_display": [], + "compose_number": 0, + "display": "Rare equipment used to improve the torpedo capabilities of META ships during Restoration.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21131", + "id": 21131, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Supercavitation Generator", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21901": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Hiryuu META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21901", + "id": 21901, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Hiryuu META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21902": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Ark Royal META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21902", + "id": 21902, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point - Ark Royal META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21903": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Helena META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21903", + "id": 21903, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Helena META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21904": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Souryuu META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21904", + "id": 21904, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Souryuu META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21905": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Gneisenau META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21905", + "id": 21905, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Gneisenau META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21906": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Scharnhorst META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21906", + "id": 21906, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Scharnhorst META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21907": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Repulse META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21907", + "id": 21907, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Repulse META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21908": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Renown META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21908", + "id": 21908, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Renown META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21909": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Arizona META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21909", + "id": 21909, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Arizona META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21910": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Queen Elizabeth META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21910", + "id": 21910, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Queen Elizabeth META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21911": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Algérie META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21911", + "id": 21911, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Algérie META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21912": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Jintsuu META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21912", + "id": 21912, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Jintsuu META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21913": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Kirov META.", + "display_effect": "", + "display_icon": [], + "icon": "Props/21913", + "id": 21913, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Kirov META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "21914": { + "combination_display": [], + "compose_number": 0, + "display": "Sync Points for Rodney META", + "display_effect": "", + "display_icon": [], + "icon": "Props/21914", + "id": 21914, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Synchronization Point – Rodney META", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 4, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "30001": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a Rare piece of submarine gear:\nLow chance to receive Rare gear\nHigh chance to receive Common gear", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 30001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Submarine Starter Supplies Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30001", + "virtual_type": 0 + }, + "30011": { + "combination_display": [], + "compose_number": 5, + "display": "Contains 1 piece of Common Eagle faction gear:\nContains Common gear\nMay combine 5 to craft 1 T2 Eagle Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30001", + "id": 30011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Eagle Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30012, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30011", + "virtual_type": 0 + }, + "30012": { + "combination_display": [], + "compose_number": 5, + "display": "May contain 1 piece of Rare Eagle faction gear:\nLow chance to receive Rare gear\nHigh chance to receive Common gear\nMay combine 5 to craft 1 T3 Eagle Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30002", + "id": 30012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Eagle Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30013, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30012", + "virtual_type": 0 + }, + "30013": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Elite Eagle faction gear:\nLow chance to receive Elite gear\nHigh chance to receive Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30003", + "id": 30013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Eagle Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30013", + "virtual_type": 0 + }, + "30014": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Super Rare Eagle faction gear:\nLow chance to receive Super Rare gear\nHigh chance to receive Elite gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30004", + "id": 30014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Eagle Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30014", + "virtual_type": 0 + }, + "30015": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 piece of Super Rare Eagle faction gear:\nGuaranteed to receive Super Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30005", + "id": 30015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T5 Eagle Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30015", + "virtual_type": 0 + }, + "30021": { + "combination_display": [], + "compose_number": 5, + "display": "Contains 1 piece of Common Royal Navy faction gear:\nContains Common gear\nMay combine 5 to craft 1 T2 Royal Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30001", + "id": 30021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Royal Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30022, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30021", + "virtual_type": 0 + }, + "30022": { + "combination_display": [], + "compose_number": 5, + "display": "May contain 1 piece of Rare Royal Navy faction gear:\nLow chance to receive Rare gear\nHigh chance to receive Common gear\nMay combine 5 to craft 1 T3 Royal Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30002", + "id": 30022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Royal Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30023, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30022", + "virtual_type": 0 + }, + "30023": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Elite Royal Navy faction gear:\nLow chance to receive Elite gear\nHigh chance to receive Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30003", + "id": 30023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Royal Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30023", + "virtual_type": 0 + }, + "30024": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Super Rare Royal Navy faction gear:\nLow chance to receive Super Rare gear\nHigh chance to receive Elite gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30004", + "id": 30024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Royal Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30024", + "virtual_type": 0 + }, + "30025": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 piece of Super Rare Royal Navy faction gear:\nGuaranteed to receive Super Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30005", + "id": 30025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T5 Royal Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30025", + "virtual_type": 0 + }, + "30031": { + "combination_display": [], + "compose_number": 5, + "display": "Contains 1 piece of Common Sakura Empire faction gear:\nContains Common gear\nMay combine 5 to craft 1 T2 Sakura Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30001", + "id": 30031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Sakura Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30032, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30031", + "virtual_type": 0 + }, + "30032": { + "combination_display": [], + "compose_number": 5, + "display": "May contain 1 piece of Rare Sakura Empire faction gear:\nLow chance to receive Rare gear\nHigh chance to receive Common gear\nMay combine 5 to craft 1 T3 Sakura Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30002", + "id": 30032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Sakura Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30033, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30032", + "virtual_type": 0 + }, + "30033": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Elite Sakura Empire faction gear:\nLow chance to receive Elite gear\nHigh chance to receive Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30003", + "id": 30033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Sakura Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30033", + "virtual_type": 0 + }, + "30034": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Super Rare Sakura Empire faction gear:\nLow chance to receive Super Rare gear\nHigh chance to receive Elite gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30004", + "id": 30034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Sakura Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30034", + "virtual_type": 0 + }, + "30035": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 piece of Super Rare Sakura Empire faction gear:\nGuaranteed to receive Super Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30005", + "id": 30035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T5 Sakura Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30035", + "virtual_type": 0 + }, + "30041": { + "combination_display": [], + "compose_number": 5, + "display": "Contains 1 piece of Common Ironblood faction gear:\nContains Common gear\nMay combine 5 to craft 1 T2 Ironblood Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30001", + "id": 30041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Ironblood Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30042, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30041", + "virtual_type": 0 + }, + "30042": { + "combination_display": [], + "compose_number": 5, + "display": "May contain 1 piece of Rare Ironblood faction gear:\nLow chance to receive Rare gear\nHigh chance to receive Common gear\nMay combine 5 to craft 1 T3 Ironblood Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30002", + "id": 30042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Ironblood Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 30043, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30042", + "virtual_type": 0 + }, + "30043": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Elite Ironblood faction gear:\nLow chance to receive Elite gear\nHigh chance to receive Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30003", + "id": 30043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Ironblood Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30043", + "virtual_type": 0 + }, + "30044": { + "combination_display": [], + "compose_number": 0, + "display": "May contain 1 piece of Super Rare Ironblood faction gear:\nLow chance to receive Super Rare gear\nHigh chance to receive Elite gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30004", + "id": 30044, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T4 Ironblood Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30044", + "virtual_type": 0 + }, + "30045": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 piece of Super Rare Ironblood faction gear:\nGuaranteed to receive Super Rare gear", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30005", + "id": 30045, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T5 Ironblood Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30045", + "virtual_type": 0 + }, + "30103": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 to 4 random T3 Parts:\nParts are granted with equal probability", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30103", + "id": 30103, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Parts Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "30103", + "virtual_type": 0 + }, + "30111": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T1 Part of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 17001, + 1 + ], + [ + 2, + 17011, + 1 + ], + [ + 2, + 17021, + 1 + ], + [ + 2, + 17031, + 1 + ], + [ + 2, + 17041, + 1 + ] + ], + "icon": "Props/30111", + "id": 30111, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Universal T1 Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 17001, + 1 + ], + [ + 2, + 17011, + 1 + ], + [ + 2, + 17021, + 1 + ], + [ + 2, + 17031, + 1 + ], + [ + 2, + 17041, + 1 + ] + ], + "virtual_type": 0 + }, + "30112": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T2 Part of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 17002, + 1 + ], + [ + 2, + 17012, + 1 + ], + [ + 2, + 17022, + 1 + ], + [ + 2, + 17032, + 1 + ], + [ + 2, + 17042, + 1 + ] + ], + "icon": "Props/30112", + "id": 30112, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Universal T2 Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 17002, + 1 + ], + [ + 2, + 17012, + 1 + ], + [ + 2, + 17022, + 1 + ], + [ + 2, + 17032, + 1 + ], + [ + 2, + 17042, + 1 + ] + ], + "virtual_type": 0 + }, + "30113": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T3 Part of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 17003, + 1 + ], + [ + 2, + 17013, + 1 + ], + [ + 2, + 17023, + 1 + ], + [ + 2, + 17033, + 1 + ], + [ + 2, + 17043, + 1 + ] + ], + "icon": "Props/30113", + "id": 30113, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Universal T3 Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 17003, + 1 + ], + [ + 2, + 17013, + 1 + ], + [ + 2, + 17023, + 1 + ], + [ + 2, + 17033, + 1 + ], + [ + 2, + 17043, + 1 + ] + ], + "virtual_type": 0 + }, + "30114": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T4 Part of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 17004, + 1 + ], + [ + 2, + 17014, + 1 + ], + [ + 2, + 17024, + 1 + ], + [ + 2, + 17034, + 1 + ], + [ + 2, + 17044, + 1 + ] + ], + "icon": "Props/30114", + "id": 30114, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Universal T4 Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 17004, + 1 + ], + [ + 2, + 17014, + 1 + ], + [ + 2, + 17024, + 1 + ], + [ + 2, + 17034, + 1 + ], + [ + 2, + 17044, + 1 + ] + ], + "virtual_type": 0 + }, + "30121": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to gain 1,000 Oil. ", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 1000 + ] + ], + "icon": "Props/30121", + "id": 30121, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Oil Reserve Supply (1000) ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 15, + "usage": "usgae_drop_template", + "usage_arg": [ + 30121, + 0, + 1000 + ], + "virtual_type": 0 + }, + "30122": { + "combination_display": [], + "compose_number": 0, + "display": "使用后可获得500石油", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 500 + ] + ], + "icon": "Props/30122", + "id": 30122, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "石油储备箱(500)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 15, + "usage": "usgae_drop_template", + "usage_arg": [ + 30122, + 0, + 500 + ], + "virtual_type": 0 + }, + "30132": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T2 Retrofit Blueprint from the included options.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18002, + 1 + ], + [ + 2, + 18012, + 1 + ], + [ + 2, + 18022, + 1 + ], + [ + 2, + 18032, + 1 + ] + ], + "icon": "Props/30132", + "id": 30132, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 General Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18002, + 1 + ], + [ + 2, + 18012, + 1 + ], + [ + 2, + 18022, + 1 + ], + [ + 2, + 18032, + 1 + ] + ], + "virtual_type": 0 + }, + "30133": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T3 Retrofit Blueprint from the included options.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18003, + 1 + ], + [ + 2, + 18013, + 1 + ], + [ + 2, + 18023, + 1 + ], + [ + 2, + 18033, + 1 + ] + ], + "icon": "Props/30133", + "id": 30133, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 General Retrofit Blueprint", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18003, + 1 + ], + [ + 2, + 18013, + 1 + ], + [ + 2, + 18023, + 1 + ], + [ + 2, + 18033, + 1 + ] + ], + "virtual_type": 0 + }, + "30202": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a piece of SR gear from the included options. ", + "display_effect": "", + "display_icon": [ + [ + 3, + 1440, + 1 + ], + [ + 3, + 1540, + 1 + ], + [ + 3, + 5240, + 1 + ], + [ + 3, + 11240, + 1 + ], + [ + 3, + 16440, + 1 + ], + [ + 3, + 17340, + 1 + ], + [ + 3, + 24040, + 1 + ], + [ + 3, + 24240, + 1 + ], + [ + 3, + 26240, + 1 + ], + [ + 3, + 26540, + 1 + ], + [ + 3, + 27140, + 1 + ], + [ + 3, + 28140, + 1 + ], + [ + 3, + 31040, + 1 + ], + [ + 3, + 32240, + 1 + ], + [ + 3, + 35240, + 1 + ], + [ + 3, + 37240, + 1 + ], + [ + 3, + 39140, + 1 + ], + [ + 3, + 43040, + 1 + ], + [ + 3, + 44140, + 1 + ], + [ + 3, + 45140, + 1 + ], + [ + 3, + 46340, + 1 + ], + [ + 3, + 47140, + 1 + ] + ], + "icon": "Props/30202", + "id": 30202, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Gear Development Pack ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 16, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 3, + 1440, + 1 + ], + [ + 3, + 1540, + 1 + ], + [ + 3, + 5240, + 1 + ], + [ + 3, + 11240, + 1 + ], + [ + 3, + 16440, + 1 + ], + [ + 3, + 17340, + 1 + ], + [ + 3, + 24040, + 1 + ], + [ + 3, + 24240, + 1 + ], + [ + 3, + 26240, + 1 + ], + [ + 3, + 26540, + 1 + ], + [ + 3, + 27140, + 1 + ], + [ + 3, + 28140, + 1 + ], + [ + 3, + 31040, + 1 + ], + [ + 3, + 32240, + 1 + ], + [ + 3, + 35240, + 1 + ], + [ + 3, + 37240, + 1 + ], + [ + 3, + 39140, + 1 + ], + [ + 3, + 43040, + 1 + ], + [ + 3, + 44140, + 1 + ], + [ + 3, + 45140, + 1 + ], + [ + 3, + 46340, + 1 + ], + [ + 3, + 47140, + 1 + ] + ], + "virtual_type": 0 + }, + "30203": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain 1 of the following pieces of R&D Gear of your choosing. ", + "display_effect": "", + "display_icon": [ + [ + 3, + 16080, + 1 + ], + [ + 3, + 17380, + 1 + ], + [ + 3, + 18220, + 1 + ], + [ + 3, + 28220, + 1 + ], + [ + 3, + 25040, + 1 + ], + [ + 3, + 41160, + 1 + ], + [ + 3, + 48040, + 1 + ] + ], + "icon": "Props/30203", + "id": 30203, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Lab Development Pack ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 16, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 3, + 16080, + 1 + ], + [ + 3, + 17380, + 1 + ], + [ + 3, + 18220, + 1 + ], + [ + 3, + 28220, + 1 + ], + [ + 3, + 25040, + 1 + ], + [ + 3, + 41160, + 1 + ], + [ + 3, + 48040, + 1 + ] + ], + "virtual_type": 0 + }, + "30204": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a piece of gear from the included options.", + "display_effect": "", + "display_icon": [ + [ + 3, + 5240, + 1 + ], + [ + 3, + 11240, + 1 + ], + [ + 3, + 17340, + 1 + ], + [ + 3, + 24340, + 1 + ], + [ + 3, + 29200, + 1 + ], + [ + 3, + 32240, + 1 + ], + [ + 3, + 38240, + 1 + ], + [ + 3, + 43040, + 1 + ], + [ + 3, + 46340, + 1 + ] + ], + "icon": "Props/30204", + "id": 30204, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Development Pack - Support Campaign", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 16, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 3, + 5240, + 1 + ], + [ + 3, + 11240, + 1 + ], + [ + 3, + 17340, + 1 + ], + [ + 3, + 24340, + 1 + ], + [ + 3, + 29200, + 1 + ], + [ + 3, + 32240, + 1 + ], + [ + 3, + 38240, + 1 + ], + [ + 3, + 43040, + 1 + ], + [ + 3, + 46340, + 1 + ] + ], + "virtual_type": 0 + }, + "30205": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random piece of Iris Orthodoxy gear.", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30205", + "id": 30205, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Iris Orthodoxy Gear Development Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "30205", + "virtual_type": 0 + }, + "30301": { + "combination_display": [], + "compose_number": 0, + "display": "Stuck inside is a little slip of paper: \"Merry Christmas nya! Let's continue to work hard together nya!\" ", + "display_effect": "", + "display_icon": [ + [ + 2, + 50001, + 10 + ], + [ + 2, + 50004, + 5 + ], + [ + 2, + 59375, + 1 + ] + ], + "icon": "Props/chrisgift", + "id": 30301, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Akashi's Christmas Present ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 30301, + 300, + 200 + ], + "virtual_type": 0 + }, + "30302": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1, + 1 + ], + [ + 9, + 2, + 1 + ], + [ + 9, + 3, + 1 + ], + [ + 9, + 4, + 1 + ], + [ + 9, + 5, + 1 + ], + [ + 9, + 6, + 1 + ], + [ + 9, + 7, + 1 + ], + [ + 9, + 8, + 1 + ], + [ + 9, + 9, + 1 + ], + [ + 9, + 10, + 1 + ], + [ + 9, + 11, + 1 + ], + [ + 9, + 12, + 1 + ], + [ + 9, + 13, + 1 + ], + [ + 9, + 14, + 1 + ], + [ + 9, + 15, + 1 + ], + [ + 9, + 16, + 1 + ], + [ + 9, + 17, + 1 + ], + [ + 9, + 18, + 1 + ], + [ + 9, + 19, + 1 + ], + [ + 9, + 20, + 1 + ], + [ + 9, + 21, + 1 + ] + ], + "icon": "Props/appearancebox", + "id": 30302, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30302", + "virtual_type": 0 + }, + "30303": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Neptune collab equipment skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 1001, + 1 + ], + [ + 9, + 1002, + 1 + ], + [ + 9, + 1003, + 1 + ], + [ + 9, + 1004, + 1 + ], + [ + 9, + 1005, + 1 + ], + [ + 9, + 1006, + 1 + ], + [ + 9, + 1007, + 1 + ], + [ + 9, + 1008, + 1 + ], + [ + 9, + 1009, + 1 + ], + [ + 9, + 1010, + 1 + ], + [ + 9, + 1011, + 1 + ], + [ + 9, + 1012, + 1 + ], + [ + 9, + 1013, + 1 + ], + [ + 9, + 1014, + 1 + ], + [ + 9, + 1015, + 1 + ] + ], + "icon": "Props/appearanceboxnep", + "id": 30303, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Neptune) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30303", + "virtual_type": 0 + }, + "30304": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin (Spring Festival or Beaver).", + "display_effect": "", + "display_icon": [ + [ + 9, + 22, + 1 + ], + [ + 9, + 23, + 1 + ], + [ + 9, + 24, + 1 + ], + [ + 9, + 25, + 1 + ], + [ + 9, + 26, + 1 + ], + [ + 9, + 27, + 1 + ], + [ + 9, + 28, + 1 + ], + [ + 9, + 29, + 1 + ], + [ + 9, + 30, + 1 + ], + [ + 9, + 31, + 1 + ], + [ + 9, + 32, + 1 + ], + [ + 9, + 33, + 1 + ], + [ + 9, + 34, + 1 + ], + [ + 9, + 35, + 1 + ], + [ + 9, + 36, + 1 + ], + [ + 9, + 37, + 1 + ], + [ + 9, + 38, + 1 + ] + ], + "icon": "Props/appearanceboxchspr", + "id": 30304, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Spring Festival)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30304", + "virtual_type": 0 + }, + "30305": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin from School Festival event.", + "display_effect": "", + "display_icon": [ + [ + 9, + 50, + 1 + ], + [ + 9, + 51, + 1 + ], + [ + 9, + 52, + 1 + ], + [ + 9, + 53, + 1 + ], + [ + 9, + 54, + 1 + ], + [ + 9, + 55, + 1 + ], + [ + 9, + 56, + 1 + ], + [ + 9, + 57, + 1 + ], + [ + 9, + 58, + 1 + ], + [ + 9, + 59, + 1 + ], + [ + 9, + 60, + 1 + ], + [ + 9, + 61, + 1 + ], + [ + 9, + 62, + 1 + ], + [ + 9, + 63, + 1 + ], + [ + 9, + 64, + 1 + ], + [ + 9, + 65, + 1 + ], + [ + 9, + 66, + 1 + ] + ], + "icon": "Props/appearanceboxkaixue", + "id": 30305, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (School Festival)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30305", + "virtual_type": 0 + }, + "30306": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1, + 1 + ], + [ + 9, + 2, + 1 + ], + [ + 9, + 3, + 1 + ], + [ + 9, + 4, + 1 + ], + [ + 9, + 5, + 1 + ], + [ + 9, + 6, + 1 + ], + [ + 9, + 7, + 1 + ], + [ + 9, + 8, + 1 + ], + [ + 9, + 9, + 1 + ], + [ + 9, + 10, + 1 + ], + [ + 9, + 11, + 1 + ], + [ + 9, + 12, + 1 + ], + [ + 9, + 13, + 1 + ], + [ + 9, + 14, + 1 + ], + [ + 9, + 15, + 1 + ], + [ + 9, + 16, + 1 + ], + [ + 9, + 17, + 1 + ], + [ + 9, + 18, + 1 + ], + [ + 9, + 19, + 1 + ], + [ + 9, + 20, + 1 + ], + [ + 9, + 21, + 1 + ] + ], + "icon": "Props/appearancebox", + "id": 30306, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30306", + "virtual_type": 0 + }, + "30307": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 101, + 1 + ], + [ + 9, + 102, + 1 + ], + [ + 9, + 103, + 1 + ], + [ + 9, + 104, + 1 + ], + [ + 9, + 105, + 1 + ], + [ + 9, + 106, + 1 + ], + [ + 9, + 107, + 1 + ], + [ + 9, + 108, + 1 + ], + [ + 9, + 109, + 1 + ], + [ + 9, + 110, + 1 + ], + [ + 9, + 111, + 1 + ], + [ + 9, + 112, + 1 + ], + [ + 9, + 113, + 1 + ], + [ + 9, + 114, + 1 + ], + [ + 9, + 115, + 1 + ], + [ + 9, + 116, + 1 + ], + [ + 9, + 117, + 1 + ], + [ + 9, + 118, + 1 + ] + ], + "icon": "Props/appearanceboxsummer", + "id": 30307, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (End of Summer) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30307", + "virtual_type": 0 + }, + "30309": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1, + 1 + ], + [ + 9, + 2, + 1 + ], + [ + 9, + 3, + 1 + ], + [ + 9, + 4, + 1 + ], + [ + 9, + 5, + 1 + ], + [ + 9, + 6, + 1 + ], + [ + 9, + 7, + 1 + ], + [ + 9, + 8, + 1 + ], + [ + 9, + 9, + 1 + ], + [ + 9, + 10, + 1 + ], + [ + 9, + 11, + 1 + ], + [ + 9, + 12, + 1 + ], + [ + 9, + 13, + 1 + ], + [ + 9, + 14, + 1 + ], + [ + 9, + 15, + 1 + ], + [ + 9, + 16, + 1 + ], + [ + 9, + 17, + 1 + ], + [ + 9, + 18, + 1 + ], + [ + 9, + 19, + 1 + ], + [ + 9, + 20, + 1 + ], + [ + 9, + 21, + 1 + ] + ], + "icon": "Props/appearancebox", + "id": 30309, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30306", + "virtual_type": 0 + }, + "30310": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 120, + 1 + ], + [ + 9, + 121, + 1 + ], + [ + 9, + 122, + 1 + ], + [ + 9, + 123, + 1 + ], + [ + 9, + 124, + 1 + ], + [ + 9, + 125, + 1 + ], + [ + 9, + 126, + 1 + ], + [ + 9, + 127, + 1 + ], + [ + 9, + 128, + 1 + ], + [ + 9, + 129, + 1 + ], + [ + 9, + 130, + 1 + ], + [ + 9, + 131, + 1 + ], + [ + 9, + 132, + 1 + ], + [ + 9, + 133, + 1 + ], + [ + 9, + 134, + 1 + ], + [ + 9, + 135, + 1 + ], + [ + 9, + 136, + 1 + ], + [ + 9, + 137, + 1 + ] + ], + "icon": "Props/appearanceboxxiaozhu", + "id": 30310, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Boar) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30310", + "virtual_type": 0 + }, + "30311": { + "combination_display": [], + "compose_number": 0, + "display": "Contains one random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 140, + 1 + ], + [ + 9, + 141, + 1 + ], + [ + 9, + 142, + 1 + ], + [ + 9, + 143, + 1 + ], + [ + 9, + 144, + 1 + ], + [ + 9, + 145, + 1 + ], + [ + 9, + 146, + 1 + ], + [ + 9, + 147, + 1 + ], + [ + 9, + 148, + 1 + ], + [ + 9, + 149, + 1 + ], + [ + 9, + 150, + 1 + ], + [ + 9, + 151, + 1 + ], + [ + 9, + 152, + 1 + ], + [ + 9, + 153, + 1 + ], + [ + 9, + 154, + 1 + ], + [ + 9, + 155, + 1 + ], + [ + 9, + 156, + 1 + ], + [ + 9, + 157, + 1 + ] + ], + "icon": "Props/appearanceboxhuangjia", + "id": 30311, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Royal) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30311", + "virtual_type": 0 + }, + "30312": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin (Lunar New Year or Ghost series). ", + "display_effect": "", + "display_icon": [ + [ + 9, + 22, + 1 + ], + [ + 9, + 23, + 1 + ], + [ + 9, + 24, + 1 + ], + [ + 9, + 25, + 1 + ], + [ + 9, + 26, + 1 + ], + [ + 9, + 27, + 1 + ], + [ + 9, + 28, + 1 + ], + [ + 9, + 29, + 1 + ], + [ + 9, + 30, + 1 + ], + [ + 9, + 31, + 1 + ], + [ + 9, + 32, + 1 + ], + [ + 9, + 33, + 1 + ], + [ + 9, + 34, + 1 + ], + [ + 9, + 35, + 1 + ], + [ + 9, + 36, + 1 + ], + [ + 9, + 37, + 1 + ], + [ + 9, + 38, + 1 + ] + ], + "icon": "Props/appearanceboxchspr", + "id": 30312, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Lunar New Year) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30312", + "virtual_type": 0 + }, + "30313": { + "combination_display": [], + "compose_number": 0, + "display": "Contains one random Kizuna AI-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 1101, + 1 + ], + [ + 9, + 1102, + 1 + ], + [ + 9, + 1103, + 1 + ], + [ + 9, + 1104, + 1 + ], + [ + 9, + 1105, + 1 + ], + [ + 9, + 1106, + 1 + ], + [ + 9, + 1107, + 1 + ], + [ + 9, + 1108, + 1 + ], + [ + 9, + 1109, + 1 + ], + [ + 9, + 1110, + 1 + ], + [ + 9, + 1111, + 1 + ], + [ + 9, + 1112, + 1 + ], + [ + 9, + 1113, + 1 + ], + [ + 9, + 1114, + 1 + ], + [ + 9, + 1115, + 1 + ], + [ + 9, + 1116, + 1 + ], + [ + 9, + 1117, + 1 + ], + [ + 9, + 1118, + 1 + ], + [ + 9, + 1119, + 1 + ] + ], + "icon": "Props/appearanceboxai", + "id": 30313, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Equipment Skin Box (Kizuna AI) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30313", + "virtual_type": 0 + }, + "30314": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Sardegna-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 160, + 1 + ], + [ + 9, + 161, + 1 + ], + [ + 9, + 162, + 1 + ], + [ + 9, + 163, + 1 + ], + [ + 9, + 164, + 1 + ], + [ + 9, + 165, + 1 + ], + [ + 9, + 166, + 1 + ], + [ + 9, + 167, + 1 + ], + [ + 9, + 168, + 1 + ], + [ + 9, + 169, + 1 + ], + [ + 9, + 170, + 1 + ], + [ + 9, + 171, + 1 + ], + [ + 9, + 172, + 1 + ], + [ + 9, + 173, + 1 + ], + [ + 9, + 174, + 1 + ], + [ + 9, + 175, + 1 + ], + [ + 9, + 176, + 1 + ], + [ + 9, + 177, + 1 + ] + ], + "icon": "Props/appearanceboxsading", + "id": 30314, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Sardegna) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30314", + "virtual_type": 0 + }, + "30315": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 180, + 1 + ], + [ + 9, + 181, + 1 + ], + [ + 9, + 182, + 1 + ], + [ + 9, + 183, + 1 + ], + [ + 9, + 184, + 1 + ], + [ + 9, + 185, + 1 + ], + [ + 9, + 186, + 1 + ], + [ + 9, + 187, + 1 + ], + [ + 9, + 188, + 1 + ], + [ + 9, + 189, + 1 + ], + [ + 9, + 190, + 1 + ], + [ + 9, + 191, + 1 + ], + [ + 9, + 192, + 1 + ], + [ + 9, + 193, + 1 + ], + [ + 9, + 194, + 1 + ], + [ + 9, + 195, + 1 + ], + [ + 9, + 196, + 1 + ], + [ + 9, + 197, + 1 + ] + ], + "icon": "Props/appearanceboxouxiang", + "id": 30315, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Polaris) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30315", + "virtual_type": 0 + }, + "30316": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Hololive-themed gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 200, + 1 + ], + [ + 9, + 201, + 1 + ], + [ + 9, + 202, + 1 + ], + [ + 9, + 203, + 1 + ], + [ + 9, + 204, + 1 + ], + [ + 9, + 205, + 1 + ], + [ + 9, + 206, + 1 + ], + [ + 9, + 207, + 1 + ], + [ + 9, + 208, + 1 + ], + [ + 9, + 209, + 1 + ], + [ + 9, + 210, + 1 + ], + [ + 9, + 211, + 1 + ], + [ + 9, + 212, + 1 + ], + [ + 9, + 213, + 1 + ], + [ + 9, + 214, + 1 + ], + [ + 9, + 215, + 1 + ], + [ + 9, + 216, + 1 + ], + [ + 9, + 217, + 1 + ] + ], + "icon": "Props/appearanceboxhololive", + "id": 30316, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Hololive)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30316", + "virtual_type": 0 + }, + "30317": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 220, + 1 + ], + [ + 9, + 221, + 1 + ], + [ + 9, + 222, + 1 + ], + [ + 9, + 223, + 1 + ], + [ + 9, + 224, + 1 + ], + [ + 9, + 225, + 1 + ], + [ + 9, + 226, + 1 + ], + [ + 9, + 227, + 1 + ], + [ + 9, + 228, + 1 + ], + [ + 9, + 229, + 1 + ], + [ + 9, + 230, + 1 + ], + [ + 9, + 231, + 1 + ], + [ + 9, + 232, + 1 + ], + [ + 9, + 233, + 1 + ], + [ + 9, + 234, + 1 + ], + [ + 9, + 235, + 1 + ], + [ + 9, + 236, + 1 + ], + [ + 9, + 237, + 1 + ] + ], + "icon": "Props/appearanceboxbeilian", + "id": 30317, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Northern) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30317", + "virtual_type": 0 + }, + "30318": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Eagle Union-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 240, + 1 + ], + [ + 9, + 241, + 1 + ], + [ + 9, + 242, + 1 + ], + [ + 9, + 243, + 1 + ], + [ + 9, + 244, + 1 + ], + [ + 9, + 245, + 1 + ], + [ + 9, + 246, + 1 + ], + [ + 9, + 247, + 1 + ], + [ + 9, + 248, + 1 + ], + [ + 9, + 249, + 1 + ], + [ + 9, + 250, + 1 + ], + [ + 9, + 251, + 1 + ], + [ + 9, + 252, + 1 + ], + [ + 9, + 253, + 1 + ], + [ + 9, + 254, + 1 + ], + [ + 9, + 255, + 1 + ], + [ + 9, + 256, + 1 + ], + [ + 9, + 257, + 1 + ] + ], + "icon": "Props/appearanceboxbaiying", + "id": 30318, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Union) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30318", + "virtual_type": 0 + }, + "30319": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Iris Libre-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 260, + 1 + ], + [ + 9, + 261, + 1 + ], + [ + 9, + 262, + 1 + ], + [ + 9, + 263, + 1 + ], + [ + 9, + 264, + 1 + ], + [ + 9, + 265, + 1 + ], + [ + 9, + 266, + 1 + ], + [ + 9, + 267, + 1 + ], + [ + 9, + 268, + 1 + ], + [ + 9, + 269, + 1 + ], + [ + 9, + 270, + 1 + ], + [ + 9, + 271, + 1 + ], + [ + 9, + 272, + 1 + ], + [ + 9, + 273, + 1 + ], + [ + 9, + 274, + 1 + ], + [ + 9, + 275, + 1 + ], + [ + 9, + 276, + 1 + ], + [ + 9, + 277, + 1 + ] + ], + "icon": "Props/appearanceboxfaxi", + "id": 30319, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Iris) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30319", + "virtual_type": 0 + }, + "30320": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random hospital-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 280, + 1 + ], + [ + 9, + 281, + 1 + ], + [ + 9, + 282, + 1 + ], + [ + 9, + 283, + 1 + ], + [ + 9, + 284, + 1 + ], + [ + 9, + 285, + 1 + ], + [ + 9, + 286, + 1 + ], + [ + 9, + 287, + 1 + ], + [ + 9, + 288, + 1 + ], + [ + 9, + 289, + 1 + ], + [ + 9, + 290, + 1 + ], + [ + 9, + 291, + 1 + ], + [ + 9, + 292, + 1 + ], + [ + 9, + 293, + 1 + ], + [ + 9, + 294, + 1 + ], + [ + 9, + 295, + 1 + ], + [ + 9, + 296, + 1 + ], + [ + 9, + 297, + 1 + ] + ], + "icon": "Props/appearanceboxyiyuan", + "id": 30320, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Hospital) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30320", + "virtual_type": 0 + }, + "30321": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Sakura Empire-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 300, + 1 + ], + [ + 9, + 301, + 1 + ], + [ + 9, + 302, + 1 + ], + [ + 9, + 303, + 1 + ], + [ + 9, + 304, + 1 + ], + [ + 9, + 305, + 1 + ], + [ + 9, + 306, + 1 + ], + [ + 9, + 307, + 1 + ], + [ + 9, + 308, + 1 + ], + [ + 9, + 309, + 1 + ], + [ + 9, + 310, + 1 + ], + [ + 9, + 311, + 1 + ], + [ + 9, + 312, + 1 + ], + [ + 9, + 313, + 1 + ], + [ + 9, + 314, + 1 + ], + [ + 9, + 315, + 1 + ], + [ + 9, + 316, + 1 + ], + [ + 9, + 317, + 1 + ] + ], + "icon": "Props/appearanceboxchongying", + "id": 30321, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Sakura) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30321", + "virtual_type": 0 + }, + "30322": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain a random idol-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 320, + 1 + ], + [ + 9, + 321, + 1 + ], + [ + 9, + 322, + 1 + ], + [ + 9, + 323, + 1 + ], + [ + 9, + 324, + 1 + ], + [ + 9, + 325, + 1 + ], + [ + 9, + 326, + 1 + ], + [ + 9, + 327, + 1 + ], + [ + 9, + 328, + 1 + ], + [ + 9, + 329, + 1 + ], + [ + 9, + 330, + 1 + ], + [ + 9, + 331, + 1 + ], + [ + 9, + 332, + 1 + ], + [ + 9, + 333, + 1 + ], + [ + 9, + 334, + 1 + ], + [ + 9, + 335, + 1 + ], + [ + 9, + 336, + 1 + ], + [ + 9, + 337, + 1 + ] + ], + "icon": "Props/appearanceboxjichang", + "id": 30322, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Shining Stars) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30322", + "virtual_type": 0 + }, + "30323": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Venus collab gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 340, + 1 + ], + [ + 9, + 341, + 1 + ], + [ + 9, + 342, + 1 + ], + [ + 9, + 343, + 1 + ], + [ + 9, + 344, + 1 + ], + [ + 9, + 345, + 1 + ], + [ + 9, + 346, + 1 + ], + [ + 9, + 347, + 1 + ], + [ + 9, + 348, + 1 + ], + [ + 9, + 349, + 1 + ], + [ + 9, + 350, + 1 + ], + [ + 9, + 351, + 1 + ], + [ + 9, + 352, + 1 + ], + [ + 9, + 353, + 1 + ], + [ + 9, + 354, + 1 + ], + [ + 9, + 355, + 1 + ], + [ + 9, + 356, + 1 + ], + [ + 9, + 357, + 1 + ] + ], + "icon": "Props/appearanceboxdoa", + "id": 30323, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Venus Vacation) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30323", + "virtual_type": 0 + }, + "30324": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Iron Blood-themed gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 360, + 1 + ], + [ + 9, + 361, + 1 + ], + [ + 9, + 362, + 1 + ], + [ + 9, + 363, + 1 + ], + [ + 9, + 364, + 1 + ], + [ + 9, + 365, + 1 + ], + [ + 9, + 366, + 1 + ], + [ + 9, + 367, + 1 + ], + [ + 9, + 368, + 1 + ], + [ + 9, + 369, + 1 + ], + [ + 9, + 370, + 1 + ], + [ + 9, + 371, + 1 + ], + [ + 9, + 372, + 1 + ], + [ + 9, + 373, + 1 + ], + [ + 9, + 374, + 1 + ], + [ + 9, + 375, + 1 + ], + [ + 9, + 376, + 1 + ], + [ + 9, + 377, + 1 + ] + ], + "icon": "Props/appearanceboxtiexue", + "id": 30324, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Iron Blood) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30324", + "virtual_type": 0 + }, + "30325": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Spring Festival-themed gear skin", + "display_effect": "", + "display_icon": [ + [ + 9, + 380, + 1 + ], + [ + 9, + 381, + 1 + ], + [ + 9, + 382, + 1 + ], + [ + 9, + 383, + 1 + ], + [ + 9, + 384, + 1 + ], + [ + 9, + 385, + 1 + ], + [ + 9, + 386, + 1 + ], + [ + 9, + 387, + 1 + ], + [ + 9, + 388, + 1 + ], + [ + 9, + 389, + 1 + ], + [ + 9, + 390, + 1 + ], + [ + 9, + 391, + 1 + ], + [ + 9, + 392, + 1 + ], + [ + 9, + 393, + 1 + ], + [ + 9, + 394, + 1 + ], + [ + 9, + 395, + 1 + ], + [ + 9, + 396, + 1 + ], + [ + 9, + 397, + 1 + ] + ], + "icon": "Props/appearanceboxchunjie", + "id": 30325, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Spring Festival)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30325", + "virtual_type": 0 + }, + "30326": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 400, + 1 + ], + [ + 9, + 401, + 1 + ], + [ + 9, + 402, + 1 + ], + [ + 9, + 403, + 1 + ], + [ + 9, + 404, + 1 + ], + [ + 9, + 405, + 1 + ], + [ + 9, + 406, + 1 + ], + [ + 9, + 407, + 1 + ], + [ + 9, + 408, + 1 + ], + [ + 9, + 409, + 1 + ], + [ + 9, + 410, + 1 + ], + [ + 9, + 411, + 1 + ], + [ + 9, + 412, + 1 + ], + [ + 9, + 413, + 1 + ], + [ + 9, + 414, + 1 + ], + [ + 9, + 415, + 1 + ], + [ + 9, + 416, + 1 + ], + [ + 9, + 417, + 1 + ] + ], + "icon": "Props/appearanceboxyouleyuan", + "id": 30326, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Manjuu Theme Park)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30326", + "virtual_type": 0 + }, + "30327": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 420, + 1 + ], + [ + 9, + 421, + 1 + ], + [ + 9, + 422, + 1 + ], + [ + 9, + 423, + 1 + ], + [ + 9, + 424, + 1 + ], + [ + 9, + 425, + 1 + ], + [ + 9, + 426, + 1 + ], + [ + 9, + 427, + 1 + ], + [ + 9, + 428, + 1 + ], + [ + 9, + 429, + 1 + ], + [ + 9, + 430, + 1 + ], + [ + 9, + 431, + 1 + ], + [ + 9, + 432, + 1 + ], + [ + 9, + 433, + 1 + ], + [ + 9, + 434, + 1 + ], + [ + 9, + 435, + 1 + ], + [ + 9, + 436, + 1 + ], + [ + 9, + 437, + 1 + ] + ], + "icon": "Props/appearanceboxidolmaster", + "id": 30327, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (The Idolmaster) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30327", + "virtual_type": 0 + }, + "30328": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 440, + 1 + ], + [ + 9, + 441, + 1 + ], + [ + 9, + 442, + 1 + ], + [ + 9, + 443, + 1 + ], + [ + 9, + 444, + 1 + ], + [ + 9, + 445, + 1 + ], + [ + 9, + 446, + 1 + ], + [ + 9, + 447, + 1 + ], + [ + 9, + 448, + 1 + ], + [ + 9, + 449, + 1 + ], + [ + 9, + 450, + 1 + ], + [ + 9, + 451, + 1 + ], + [ + 9, + 452, + 1 + ], + [ + 9, + 453, + 1 + ], + [ + 9, + 454, + 1 + ], + [ + 9, + 455, + 1 + ], + [ + 9, + 456, + 1 + ], + [ + 9, + 457, + 1 + ] + ], + "icon": "Props/appearanceboxniuzai", + "id": 30328, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Cowboy Essentials) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30328", + "virtual_type": 0 + }, + "30329": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 460, + 1 + ], + [ + 9, + 461, + 1 + ], + [ + 9, + 462, + 1 + ], + [ + 9, + 463, + 1 + ], + [ + 9, + 464, + 1 + ], + [ + 9, + 465, + 1 + ], + [ + 9, + 466, + 1 + ], + [ + 9, + 467, + 1 + ], + [ + 9, + 468, + 1 + ], + [ + 9, + 469, + 1 + ], + [ + 9, + 470, + 1 + ], + [ + 9, + 471, + 1 + ], + [ + 9, + 472, + 1 + ], + [ + 9, + 473, + 1 + ], + [ + 9, + 474, + 1 + ], + [ + 9, + 475, + 1 + ], + [ + 9, + 476, + 1 + ], + [ + 9, + 477, + 1 + ] + ], + "icon": "Props/appearanceboxshuishangleyuan", + "id": 30329, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Floating Funland) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30329", + "virtual_type": 0 + }, + "30330": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 480, + 1 + ], + [ + 9, + 481, + 1 + ], + [ + 9, + 482, + 1 + ], + [ + 9, + 483, + 1 + ], + [ + 9, + 484, + 1 + ], + [ + 9, + 485, + 1 + ], + [ + 9, + 486, + 1 + ], + [ + 9, + 487, + 1 + ], + [ + 9, + 488, + 1 + ], + [ + 9, + 489, + 1 + ], + [ + 9, + 490, + 1 + ], + [ + 9, + 491, + 1 + ], + [ + 9, + 492, + 1 + ], + [ + 9, + 493, + 1 + ], + [ + 9, + 494, + 1 + ], + [ + 9, + 495, + 1 + ], + [ + 9, + 496, + 1 + ], + [ + 9, + 497, + 1 + ] + ], + "icon": "Props/appearanceboxssss", + "id": 30330, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (SSSS) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30330", + "virtual_type": 0 + }, + "30331": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 500, + 1 + ], + [ + 9, + 501, + 1 + ], + [ + 9, + 502, + 1 + ], + [ + 9, + 503, + 1 + ], + [ + 9, + 504, + 1 + ], + [ + 9, + 505, + 1 + ], + [ + 9, + 506, + 1 + ], + [ + 9, + 507, + 1 + ], + [ + 9, + 508, + 1 + ], + [ + 9, + 509, + 1 + ], + [ + 9, + 510, + 1 + ], + [ + 9, + 511, + 1 + ], + [ + 9, + 512, + 1 + ], + [ + 9, + 513, + 1 + ], + [ + 9, + 514, + 1 + ], + [ + 9, + 515, + 1 + ], + [ + 9, + 516, + 1 + ], + [ + 9, + 517, + 1 + ] + ], + "icon": "Props/appearanceboxnvpu", + "id": 30331, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Café) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30331", + "virtual_type": 0 + }, + "30332": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Spring Festival-themed gear skin", + "display_effect": "", + "display_icon": [ + [ + 9, + 520, + 1 + ], + [ + 9, + 521, + 1 + ], + [ + 9, + 522, + 1 + ], + [ + 9, + 523, + 1 + ], + [ + 9, + 524, + 1 + ], + [ + 9, + 525, + 1 + ], + [ + 9, + 526, + 1 + ], + [ + 9, + 527, + 1 + ], + [ + 9, + 528, + 1 + ], + [ + 9, + 529, + 1 + ], + [ + 9, + 530, + 1 + ], + [ + 9, + 531, + 1 + ], + [ + 9, + 532, + 1 + ], + [ + 9, + 533, + 1 + ], + [ + 9, + 534, + 1 + ], + [ + 9, + 535, + 1 + ], + [ + 9, + 536, + 1 + ], + [ + 9, + 537, + 1 + ] + ], + "icon": "Props/appearanceboxhunianchunjie", + "id": 30332, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Spring Festival 2022)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30332", + "virtual_type": 0 + }, + "30333": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 540, + 1 + ], + [ + 9, + 541, + 1 + ], + [ + 9, + 542, + 1 + ], + [ + 9, + 543, + 1 + ], + [ + 9, + 544, + 1 + ], + [ + 9, + 545, + 1 + ], + [ + 9, + 546, + 1 + ], + [ + 9, + 547, + 1 + ], + [ + 9, + 548, + 1 + ], + [ + 9, + 549, + 1 + ], + [ + 9, + 550, + 1 + ], + [ + 9, + 551, + 1 + ], + [ + 9, + 552, + 1 + ], + [ + 9, + 553, + 1 + ], + [ + 9, + 554, + 1 + ], + [ + 9, + 555, + 1 + ], + [ + 9, + 556, + 1 + ], + [ + 9, + 557, + 1 + ] + ], + "icon": "Props/appearanceboxhongyue", + "id": 30333, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Blood Moon)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30333", + "virtual_type": 0 + }, + "30334": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 560, + 1 + ], + [ + 9, + 561, + 1 + ], + [ + 9, + 562, + 1 + ], + [ + 9, + 563, + 1 + ], + [ + 9, + 564, + 1 + ], + [ + 9, + 565, + 1 + ], + [ + 9, + 566, + 1 + ], + [ + 9, + 567, + 1 + ], + [ + 9, + 568, + 1 + ], + [ + 9, + 569, + 1 + ], + [ + 9, + 570, + 1 + ], + [ + 9, + 571, + 1 + ], + [ + 9, + 572, + 1 + ], + [ + 9, + 573, + 1 + ], + [ + 9, + 574, + 1 + ], + [ + 9, + 575, + 1 + ], + [ + 9, + 576, + 1 + ], + [ + 9, + 577, + 1 + ] + ], + "icon": "Props/appearanceboxdonghuangshishang", + "id": 30334, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Empery Chic)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30334", + "virtual_type": 0 + }, + "30335": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 580, + 1 + ], + [ + 9, + 581, + 1 + ], + [ + 9, + 582, + 1 + ], + [ + 9, + 583, + 1 + ], + [ + 9, + 584, + 1 + ], + [ + 9, + 585, + 1 + ], + [ + 9, + 586, + 1 + ], + [ + 9, + 587, + 1 + ], + [ + 9, + 588, + 1 + ], + [ + 9, + 589, + 1 + ], + [ + 9, + 590, + 1 + ], + [ + 9, + 591, + 1 + ], + [ + 9, + 592, + 1 + ], + [ + 9, + 593, + 1 + ], + [ + 9, + 594, + 1 + ], + [ + 9, + 595, + 1 + ], + [ + 9, + 596, + 1 + ], + [ + 9, + 597, + 1 + ] + ], + "icon": "Props/appearanceboxtonghua", + "id": 30335, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Fairy Tale)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30335", + "virtual_type": 0 + }, + "30336": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 600, + 1 + ], + [ + 9, + 601, + 1 + ], + [ + 9, + 602, + 1 + ], + [ + 9, + 603, + 1 + ], + [ + 9, + 604, + 1 + ], + [ + 9, + 605, + 1 + ], + [ + 9, + 606, + 1 + ], + [ + 9, + 607, + 1 + ], + [ + 9, + 608, + 1 + ], + [ + 9, + 609, + 1 + ], + [ + 9, + 610, + 1 + ], + [ + 9, + 611, + 1 + ], + [ + 9, + 612, + 1 + ], + [ + 9, + 613, + 1 + ], + [ + 9, + 614, + 1 + ], + [ + 9, + 615, + 1 + ], + [ + 9, + 616, + 1 + ], + [ + 9, + 617, + 1 + ] + ], + "icon": "Props/appearanceboxwudao", + "id": 30336, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Stage Dance)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30336", + "virtual_type": 0 + }, + "30337": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 620, + 1 + ], + [ + 9, + 621, + 1 + ], + [ + 9, + 622, + 1 + ], + [ + 9, + 623, + 1 + ], + [ + 9, + 624, + 1 + ], + [ + 9, + 625, + 1 + ], + [ + 9, + 626, + 1 + ], + [ + 9, + 627, + 1 + ], + [ + 9, + 628, + 1 + ], + [ + 9, + 629, + 1 + ], + [ + 9, + 630, + 1 + ], + [ + 9, + 631, + 1 + ], + [ + 9, + 632, + 1 + ], + [ + 9, + 633, + 1 + ], + [ + 9, + 634, + 1 + ], + [ + 9, + 635, + 1 + ], + [ + 9, + 636, + 1 + ], + [ + 9, + 637, + 1 + ] + ], + "icon": "Props/appearanceboxdexibulvxieer", + "id": 30337, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Iron Blood)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30337", + "virtual_type": 0 + }, + "30338": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 638, + 1 + ], + [ + 9, + 639, + 1 + ], + [ + 9, + 640, + 1 + ], + [ + 9, + 641, + 1 + ], + [ + 9, + 642, + 1 + ], + [ + 9, + 643, + 1 + ], + [ + 9, + 644, + 1 + ], + [ + 9, + 645, + 1 + ], + [ + 9, + 646, + 1 + ], + [ + 9, + 647, + 1 + ], + [ + 9, + 648, + 1 + ], + [ + 9, + 649, + 1 + ], + [ + 9, + 650, + 1 + ], + [ + 9, + 651, + 1 + ], + [ + 9, + 652, + 1 + ], + [ + 9, + 653, + 1 + ], + [ + 9, + 654, + 1 + ], + [ + 9, + 655, + 1 + ] + ], + "icon": "Props/appearanceboxxueyuanji", + "id": 30338, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Academy Festival)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30338", + "virtual_type": 0 + }, + "30339": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 670, + 1 + ], + [ + 9, + 671, + 1 + ], + [ + 9, + 672, + 1 + ], + [ + 9, + 673, + 1 + ], + [ + 9, + 674, + 1 + ], + [ + 9, + 675, + 1 + ], + [ + 9, + 676, + 1 + ], + [ + 9, + 677, + 1 + ], + [ + 9, + 678, + 1 + ], + [ + 9, + 679, + 1 + ], + [ + 9, + 680, + 1 + ], + [ + 9, + 681, + 1 + ], + [ + 9, + 682, + 1 + ], + [ + 9, + 683, + 1 + ], + [ + 9, + 684, + 1 + ], + [ + 9, + 685, + 1 + ], + [ + 9, + 686, + 1 + ], + [ + 9, + 687, + 1 + ] + ], + "icon": "Props/appearanceboxwansheng", + "id": 30339, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Halloween)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30339", + "virtual_type": 0 + }, + "30340": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Alchemist's Workshop-themed gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1200, + 1 + ], + [ + 9, + 1201, + 1 + ], + [ + 9, + 1202, + 1 + ], + [ + 9, + 1203, + 1 + ], + [ + 9, + 1204, + 1 + ], + [ + 9, + 1205, + 1 + ], + [ + 9, + 1206, + 1 + ], + [ + 9, + 1207, + 1 + ], + [ + 9, + 1208, + 1 + ], + [ + 9, + 1209, + 1 + ], + [ + 9, + 1210, + 1 + ], + [ + 9, + 1211, + 1 + ], + [ + 9, + 1212, + 1 + ], + [ + 9, + 1213, + 1 + ], + [ + 9, + 1214, + 1 + ], + [ + 9, + 1215, + 1 + ], + [ + 9, + 1216, + 1 + ], + [ + 9, + 1217, + 1 + ] + ], + "icon": "Props/appearanceboxlaisha", + "id": 30340, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Atelier Ryza)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30340", + "virtual_type": 0 + }, + "30341": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random Alchemist's Workshop-themed gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1200, + 1 + ], + [ + 9, + 1201, + 1 + ], + [ + 9, + 1202, + 1 + ], + [ + 9, + 1203, + 1 + ], + [ + 9, + 1204, + 1 + ], + [ + 9, + 1205, + 1 + ], + [ + 9, + 1206, + 1 + ], + [ + 9, + 1207, + 1 + ], + [ + 9, + 1208, + 1 + ], + [ + 9, + 1209, + 1 + ], + [ + 9, + 1210, + 1 + ], + [ + 9, + 1211, + 1 + ], + [ + 9, + 1212, + 1 + ], + [ + 9, + 1213, + 1 + ], + [ + 9, + 1214, + 1 + ], + [ + 9, + 1215, + 1 + ], + [ + 9, + 1216, + 1 + ], + [ + 9, + 1217, + 1 + ] + ], + "icon": "Props/equipskin_drop_display", + "id": 30341, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box (Atelier Ryza)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "30342": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 690, + 1 + ], + [ + 9, + 691, + 1 + ], + [ + 9, + 692, + 1 + ], + [ + 9, + 693, + 1 + ], + [ + 9, + 694, + 1 + ], + [ + 9, + 695, + 1 + ], + [ + 9, + 696, + 1 + ], + [ + 9, + 697, + 1 + ], + [ + 9, + 698, + 1 + ], + [ + 9, + 699, + 1 + ], + [ + 9, + 700, + 1 + ], + [ + 9, + 701, + 1 + ], + [ + 9, + 702, + 1 + ], + [ + 9, + 703, + 1 + ], + [ + 9, + 704, + 1 + ], + [ + 9, + 705, + 1 + ], + [ + 9, + 706, + 1 + ], + [ + 9, + 707, + 1 + ] + ], + "icon": "Props/appearanceboxjiari", + "id": 30342, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Beach Holiday)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30342", + "virtual_type": 0 + }, + "30343": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 710, + 1 + ], + [ + 9, + 711, + 1 + ], + [ + 9, + 712, + 1 + ], + [ + 9, + 713, + 1 + ], + [ + 9, + 714, + 1 + ], + [ + 9, + 715, + 1 + ], + [ + 9, + 716, + 1 + ], + [ + 9, + 717, + 1 + ], + [ + 9, + 718, + 1 + ], + [ + 9, + 719, + 1 + ], + [ + 9, + 720, + 1 + ], + [ + 9, + 721, + 1 + ], + [ + 9, + 722, + 1 + ], + [ + 9, + 723, + 1 + ], + [ + 9, + 724, + 1 + ], + [ + 9, + 725, + 1 + ], + [ + 9, + 726, + 1 + ], + [ + 9, + 727, + 1 + ] + ], + "icon": "Props/appearanceboxtunianchunjie", + "id": 30343, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Empery Gourmet)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30343", + "virtual_type": 0 + }, + "30344": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 730, + 1 + ], + [ + 9, + 731, + 1 + ], + [ + 9, + 732, + 1 + ], + [ + 9, + 733, + 1 + ], + [ + 9, + 734, + 1 + ], + [ + 9, + 735, + 1 + ], + [ + 9, + 736, + 1 + ], + [ + 9, + 737, + 1 + ], + [ + 9, + 738, + 1 + ], + [ + 9, + 739, + 1 + ], + [ + 9, + 740, + 1 + ], + [ + 9, + 741, + 1 + ], + [ + 9, + 742, + 1 + ], + [ + 9, + 743, + 1 + ], + [ + 9, + 744, + 1 + ], + [ + 9, + 745, + 1 + ], + [ + 9, + 746, + 1 + ], + [ + 9, + 747, + 1 + ] + ], + "icon": "Props/appearanceboxhuangjiajiaoshi", + "id": 30344, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Royal Academy)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30344", + "virtual_type": 0 + }, + "30345": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 750, + 1 + ], + [ + 9, + 751, + 1 + ], + [ + 9, + 752, + 1 + ], + [ + 9, + 753, + 1 + ], + [ + 9, + 754, + 1 + ], + [ + 9, + 755, + 1 + ], + [ + 9, + 756, + 1 + ], + [ + 9, + 757, + 1 + ], + [ + 9, + 758, + 1 + ], + [ + 9, + 759, + 1 + ], + [ + 9, + 760, + 1 + ], + [ + 9, + 761, + 1 + ], + [ + 9, + 762, + 1 + ], + [ + 9, + 763, + 1 + ], + [ + 9, + 764, + 1 + ], + [ + 9, + 765, + 1 + ], + [ + 9, + 766, + 1 + ], + [ + 9, + 767, + 1 + ] + ], + "icon": "Props/appearanceboxhaidaomaoxian", + "id": 30345, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Deserted Island)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30345", + "virtual_type": 0 + }, + "30346": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 780, + 1 + ], + [ + 9, + 781, + 1 + ], + [ + 9, + 782, + 1 + ], + [ + 9, + 783, + 1 + ], + [ + 9, + 784, + 1 + ], + [ + 9, + 785, + 1 + ], + [ + 9, + 786, + 1 + ], + [ + 9, + 787, + 1 + ], + [ + 9, + 788, + 1 + ], + [ + 9, + 789, + 1 + ], + [ + 9, + 790, + 1 + ], + [ + 9, + 791, + 1 + ], + [ + 9, + 792, + 1 + ], + [ + 9, + 793, + 1 + ], + [ + 9, + 794, + 1 + ], + [ + 9, + 795, + 1 + ], + [ + 9, + 796, + 1 + ], + [ + 9, + 797, + 1 + ] + ], + "icon": "Props/appearanceboxbangongshiguang", + "id": 30346, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (On the Job)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30346", + "virtual_type": 0 + }, + "30347": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 810, + 1 + ], + [ + 9, + 811, + 1 + ], + [ + 9, + 812, + 1 + ], + [ + 9, + 813, + 1 + ], + [ + 9, + 814, + 1 + ], + [ + 9, + 815, + 1 + ], + [ + 9, + 816, + 1 + ], + [ + 9, + 817, + 1 + ], + [ + 9, + 818, + 1 + ], + [ + 9, + 819, + 1 + ], + [ + 9, + 820, + 1 + ], + [ + 9, + 821, + 1 + ], + [ + 9, + 822, + 1 + ], + [ + 9, + 823, + 1 + ], + [ + 9, + 824, + 1 + ], + [ + 9, + 825, + 1 + ], + [ + 9, + 826, + 1 + ], + [ + 9, + 827, + 1 + ] + ], + "icon": "Props/appearanceboxxiarimenghuan", + "id": 30347, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Midsummer Night Dreamin')", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30347", + "virtual_type": 0 + }, + "30348": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 830, + 1 + ], + [ + 9, + 831, + 1 + ], + [ + 9, + 832, + 1 + ], + [ + 9, + 833, + 1 + ], + [ + 9, + 834, + 1 + ], + [ + 9, + 835, + 1 + ], + [ + 9, + 836, + 1 + ], + [ + 9, + 837, + 1 + ], + [ + 9, + 838, + 1 + ], + [ + 9, + 839, + 1 + ], + [ + 9, + 840, + 1 + ], + [ + 9, + 841, + 1 + ], + [ + 9, + 842, + 1 + ], + [ + 9, + 843, + 1 + ], + [ + 9, + 844, + 1 + ], + [ + 9, + 845, + 1 + ], + [ + 9, + 846, + 1 + ], + [ + 9, + 847, + 1 + ] + ], + "icon": "Props/appearanceboxyeyou", + "id": 30348, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Spirits Eve)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30348", + "virtual_type": 0 + }, + "30349": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 850, + 1 + ], + [ + 9, + 851, + 1 + ], + [ + 9, + 852, + 1 + ], + [ + 9, + 853, + 1 + ], + [ + 9, + 854, + 1 + ], + [ + 9, + 855, + 1 + ], + [ + 9, + 856, + 1 + ], + [ + 9, + 857, + 1 + ], + [ + 9, + 858, + 1 + ], + [ + 9, + 859, + 1 + ], + [ + 9, + 860, + 1 + ], + [ + 9, + 861, + 1 + ], + [ + 9, + 862, + 1 + ], + [ + 9, + 863, + 1 + ], + [ + 9, + 864, + 1 + ], + [ + 9, + 865, + 1 + ], + [ + 9, + 866, + 1 + ], + [ + 9, + 867, + 1 + ] + ], + "icon": "Props/appearanceboxhaidaopirate", + "id": 30349, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Pirate)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30349", + "virtual_type": 0 + }, + "30350": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1400, + 1 + ], + [ + 9, + 1401, + 1 + ], + [ + 9, + 1402, + 1 + ], + [ + 9, + 1403, + 1 + ], + [ + 9, + 1404, + 1 + ], + [ + 9, + 1405, + 1 + ], + [ + 9, + 1406, + 1 + ], + [ + 9, + 1407, + 1 + ], + [ + 9, + 1408, + 1 + ], + [ + 9, + 1409, + 1 + ], + [ + 9, + 1410, + 1 + ], + [ + 9, + 1411, + 1 + ], + [ + 9, + 1412, + 1 + ], + [ + 9, + 1413, + 1 + ], + [ + 9, + 1414, + 1 + ], + [ + 9, + 1415, + 1 + ], + [ + 9, + 1416, + 1 + ], + [ + 9, + 1417, + 1 + ] + ], + "icon": "Props/appearanceboxshanluan", + "id": 30350, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Kagura)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30350", + "virtual_type": 0 + }, + "30351": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 870, + 1 + ], + [ + 9, + 871, + 1 + ], + [ + 9, + 872, + 1 + ], + [ + 9, + 873, + 1 + ], + [ + 9, + 874, + 1 + ], + [ + 9, + 875, + 1 + ], + [ + 9, + 876, + 1 + ], + [ + 9, + 877, + 1 + ], + [ + 9, + 878, + 1 + ], + [ + 9, + 879, + 1 + ], + [ + 9, + 880, + 1 + ], + [ + 9, + 881, + 1 + ], + [ + 9, + 882, + 1 + ], + [ + 9, + 883, + 1 + ], + [ + 9, + 884, + 1 + ], + [ + 9, + 885, + 1 + ], + [ + 9, + 886, + 1 + ], + [ + 9, + 887, + 1 + ] + ], + "icon": "Props/appearanceboxyedian", + "id": 30351, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Night Club)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30351", + "virtual_type": 0 + }, + "30352": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 890, + 1 + ], + [ + 9, + 891, + 1 + ], + [ + 9, + 892, + 1 + ], + [ + 9, + 893, + 1 + ], + [ + 9, + 894, + 1 + ], + [ + 9, + 895, + 1 + ], + [ + 9, + 896, + 1 + ], + [ + 9, + 897, + 1 + ], + [ + 9, + 898, + 1 + ], + [ + 9, + 899, + 1 + ], + [ + 9, + 900, + 1 + ], + [ + 9, + 901, + 1 + ], + [ + 9, + 902, + 1 + ], + [ + 9, + 903, + 1 + ], + [ + 9, + 904, + 1 + ], + [ + 9, + 905, + 1 + ], + [ + 9, + 906, + 1 + ], + [ + 9, + 907, + 1 + ] + ], + "icon": "Props/appearanceboxxianxia", + "id": 30352, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Mythical Trove)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30352", + "virtual_type": 0 + }, + "30353": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 910, + 1 + ], + [ + 9, + 911, + 1 + ], + [ + 9, + 912, + 1 + ], + [ + 9, + 913, + 1 + ], + [ + 9, + 914, + 1 + ], + [ + 9, + 915, + 1 + ], + [ + 9, + 916, + 1 + ], + [ + 9, + 917, + 1 + ], + [ + 9, + 918, + 1 + ], + [ + 9, + 919, + 1 + ], + [ + 9, + 920, + 1 + ], + [ + 9, + 921, + 1 + ], + [ + 9, + 922, + 1 + ], + [ + 9, + 923, + 1 + ], + [ + 9, + 924, + 1 + ], + [ + 9, + 925, + 1 + ], + [ + 9, + 926, + 1 + ], + [ + 9, + 927, + 1 + ] + ], + "icon": "Props/appearanceboxzuiedushi", + "id": 30353, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Thieville)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30353", + "virtual_type": 0 + }, + "30354": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 930, + 1 + ], + [ + 9, + 931, + 1 + ], + [ + 9, + 932, + 1 + ], + [ + 9, + 933, + 1 + ], + [ + 9, + 934, + 1 + ], + [ + 9, + 935, + 1 + ], + [ + 9, + 936, + 1 + ], + [ + 9, + 937, + 1 + ], + [ + 9, + 938, + 1 + ], + [ + 9, + 939, + 1 + ], + [ + 9, + 940, + 1 + ], + [ + 9, + 941, + 1 + ], + [ + 9, + 942, + 1 + ], + [ + 9, + 943, + 1 + ], + [ + 9, + 944, + 1 + ], + [ + 9, + 945, + 1 + ], + [ + 9, + 946, + 1 + ], + [ + 9, + 947, + 1 + ] + ], + "icon": "Props/appearanceboxyishijiemaoxian", + "id": 30354, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (RPG Adventure)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 7000 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30354", + "virtual_type": 0 + }, + "30401": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2001, + 1 + ], + [ + 9, + 2002, + 1 + ], + [ + 9, + 2003, + 1 + ], + [ + 9, + 2004, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30401, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30401", + "virtual_type": 0 + }, + "30402": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2005, + 1 + ], + [ + 9, + 2006, + 1 + ], + [ + 9, + 2007, + 1 + ], + [ + 9, + 2008, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30402, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30402", + "virtual_type": 0 + }, + "30403": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2009, + 1 + ], + [ + 9, + 2010, + 1 + ], + [ + 9, + 2011, + 1 + ], + [ + 9, + 2012, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30403, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30403", + "virtual_type": 0 + }, + "30404": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2009, + 1 + ], + [ + 9, + 2010, + 1 + ], + [ + 9, + 2011, + 1 + ], + [ + 9, + 2013, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30404, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30404", + "virtual_type": 0 + }, + "30405": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2014, + 1 + ], + [ + 9, + 2015, + 1 + ], + [ + 9, + 2017, + 1 + ], + [ + 9, + 2018, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30405, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30405", + "virtual_type": 0 + }, + "30406": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2014, + 1 + ], + [ + 9, + 2016, + 1 + ], + [ + 9, + 2017, + 1 + ], + [ + 9, + 2018, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30406, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30406", + "virtual_type": 0 + }, + "30407": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2019, + 1 + ], + [ + 9, + 2020, + 1 + ], + [ + 9, + 2021, + 1 + ], + [ + 9, + 2022, + 1 + ], + [ + 9, + 2023, + 1 + ], + [ + 9, + 2024, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30407, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30407", + "virtual_type": 0 + }, + "30408": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive 1 Fantastic Phoenix (Torpedo), 1 Fantastic Phoenix (Fighter), and 1 Fantastic Phoenix (Bomber).", + "display_effect": "", + "display_icon": [ + [ + 9, + 2019, + 1 + ], + [ + 9, + 2020, + 1 + ], + [ + 9, + 2021, + 1 + ] + ], + "icon": "Equips/96331", + "id": 30408, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fantastic Phoenix", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30408", + "virtual_type": 0 + }, + "30409": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2025, + 1 + ], + [ + 9, + 2026, + 1 + ], + [ + 9, + 2027, + 1 + ], + [ + 9, + 2028, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30409, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30409", + "virtual_type": 0 + }, + "30410": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2029, + 1 + ], + [ + 9, + 2030, + 1 + ], + [ + 9, + 2031, + 1 + ], + [ + 9, + 2032, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30410, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30410", + "virtual_type": 0 + }, + "30411": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2033, + 1 + ], + [ + 9, + 2034, + 1 + ], + [ + 9, + 2035, + 1 + ], + [ + 9, + 2036, + 1 + ], + [ + 9, + 2037, + 1 + ], + [ + 9, + 2038, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30411, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30411", + "virtual_type": 0 + }, + "30412": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive 1 Thunder's Fury (Torpedo), 1 Thunder's Fury (Fighter), and 1 Thunder's Fury (Bomber).", + "display_effect": "", + "display_icon": [ + [ + 9, + 2033, + 1 + ], + [ + 9, + 2034, + 1 + ], + [ + 9, + 2035, + 1 + ] + ], + "icon": "Equips/96531", + "id": 30412, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Thunder's Fury", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30412", + "virtual_type": 0 + }, + "30413": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2039, + 1 + ], + [ + 9, + 2040, + 1 + ], + [ + 9, + 2041, + 1 + ], + [ + 9, + 2042, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30413, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30413", + "virtual_type": 0 + }, + "30414": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2043, + 1 + ], + [ + 9, + 2044, + 1 + ], + [ + 9, + 2045, + 1 + ], + [ + 9, + 2046, + 1 + ], + [ + 9, + 2047, + 1 + ], + [ + 9, + 2048, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30414, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30414", + "virtual_type": 0 + }, + "30415": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive 1 Pixel Rolling Thunder (Torpedo), 1 Pixel Rolling Thunder (Fighter), and 1 Pixel Rolling Thunder (Bomber).", + "display_effect": "", + "display_icon": [ + [ + 9, + 2046, + 1 + ], + [ + 9, + 2047, + 1 + ], + [ + 9, + 2048, + 1 + ] + ], + "icon": "Equips/96631", + "id": 30415, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Pixel Rolling Thunder", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30415", + "virtual_type": 0 + }, + "30416": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2049, + 1 + ], + [ + 9, + 2050, + 1 + ], + [ + 9, + 2051, + 1 + ], + [ + 9, + 2052, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30416, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30416", + "virtual_type": 0 + }, + "30417": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2053, + 1 + ], + [ + 9, + 2054, + 1 + ], + [ + 9, + 2055, + 1 + ], + [ + 9, + 2056, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30417, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30417", + "virtual_type": 0 + }, + "30418": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2061, + 1 + ], + [ + 9, + 2062, + 1 + ], + [ + 9, + 2063, + 1 + ], + [ + 9, + 2064, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30418, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30418", + "virtual_type": 0 + }, + "30419": { + "combination_display": [], + "compose_number": 0, + "display": "Lets you choose one of the following gear skins: Fire Dragon Plane (Torpedo), Fire Dragon Plane (Fighter), Fire Dragon Plane (Bomber).", + "display_effect": "", + "display_icon": [ + [ + 9, + 2068, + 1 + ], + [ + 9, + 2069, + 1 + ], + [ + 9, + 2070, + 1 + ] + ], + "icon": "Equips/96731", + "id": 30419, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fire Dragon Plane", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30419", + "virtual_type": 0 + }, + "30420": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Cruise Mission gear skin.", + "display_effect": "", + "display_icon": [ + [ + 9, + 2065, + 1 + ], + [ + 9, + 2066, + 1 + ], + [ + 9, + 2067, + 1 + ], + [ + 9, + 2068, + 1 + ], + [ + 9, + 2069, + 1 + ], + [ + 9, + 2070, + 1 + ] + ], + "icon": "Props/appearanceboxshijiexunyou", + "id": 30420, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Random Gear Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "30420", + "virtual_type": 0 + }, + "30501": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a random gear skin. ", + "display_effect": "", + "display_icon": [ + [ + 9, + 101, + 1 + ], + [ + 9, + 102, + 1 + ], + [ + 9, + 103, + 1 + ], + [ + 9, + 104, + 1 + ], + [ + 9, + 105, + 1 + ], + [ + 9, + 106, + 1 + ], + [ + 9, + 107, + 1 + ], + [ + 9, + 108, + 1 + ], + [ + 9, + 109, + 1 + ], + [ + 9, + 110, + 1 + ], + [ + 9, + 111, + 1 + ], + [ + 9, + 112, + 1 + ], + [ + 9, + 113, + 1 + ], + [ + 9, + 114, + 1 + ], + [ + 9, + 115, + 1 + ], + [ + 9, + 116, + 1 + ], + [ + 9, + 117, + 1 + ], + [ + 9, + 118, + 1 + ] + ], + "icon": "Props/appearanceboxxiamozixuan", + "id": 30501, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Development Pack (Late Summer)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 101, + 1 + ], + [ + 9, + 102, + 1 + ], + [ + 9, + 103, + 1 + ], + [ + 9, + 104, + 1 + ], + [ + 9, + 105, + 1 + ], + [ + 9, + 106, + 1 + ], + [ + 9, + 107, + 1 + ], + [ + 9, + 108, + 1 + ], + [ + 9, + 109, + 1 + ], + [ + 9, + 110, + 1 + ], + [ + 9, + 111, + 1 + ], + [ + 9, + 112, + 1 + ], + [ + 9, + 113, + 1 + ], + [ + 9, + 114, + 1 + ], + [ + 9, + 115, + 1 + ], + [ + 9, + 116, + 1 + ], + [ + 9, + 117, + 1 + ], + [ + 9, + 118, + 1 + ] + ], + "virtual_type": 0 + }, + "30502": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Lunar New Year-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 22, + 1 + ], + [ + 9, + 23, + 1 + ], + [ + 9, + 24, + 1 + ], + [ + 9, + 25, + 1 + ], + [ + 9, + 26, + 1 + ], + [ + 9, + 27, + 1 + ], + [ + 9, + 28, + 1 + ], + [ + 9, + 29, + 1 + ], + [ + 9, + 30, + 1 + ], + [ + 9, + 31, + 1 + ], + [ + 9, + 32, + 1 + ], + [ + 9, + 33, + 1 + ], + [ + 9, + 34, + 1 + ], + [ + 9, + 35, + 1 + ], + [ + 9, + 36, + 1 + ], + [ + 9, + 37, + 1 + ], + [ + 9, + 38, + 1 + ] + ], + "icon": "Props/appearanceboxchsprzixuan", + "id": 30502, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (LNY)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 22, + 1 + ], + [ + 9, + 23, + 1 + ], + [ + 9, + 24, + 1 + ], + [ + 9, + 25, + 1 + ], + [ + 9, + 26, + 1 + ], + [ + 9, + 27, + 1 + ], + [ + 9, + 28, + 1 + ], + [ + 9, + 29, + 1 + ], + [ + 9, + 30, + 1 + ], + [ + 9, + 31, + 1 + ], + [ + 9, + 32, + 1 + ], + [ + 9, + 33, + 1 + ], + [ + 9, + 34, + 1 + ], + [ + 9, + 35, + 1 + ], + [ + 9, + 36, + 1 + ], + [ + 9, + 37, + 1 + ], + [ + 9, + 38, + 1 + ] + ], + "virtual_type": 0 + }, + "30503": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 School Festival event gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 50, + 1 + ], + [ + 9, + 51, + 1 + ], + [ + 9, + 52, + 1 + ], + [ + 9, + 53, + 1 + ], + [ + 9, + 54, + 1 + ], + [ + 9, + 55, + 1 + ], + [ + 9, + 56, + 1 + ], + [ + 9, + 57, + 1 + ], + [ + 9, + 58, + 1 + ], + [ + 9, + 59, + 1 + ], + [ + 9, + 60, + 1 + ], + [ + 9, + 61, + 1 + ], + [ + 9, + 62, + 1 + ], + [ + 9, + 63, + 1 + ], + [ + 9, + 64, + 1 + ], + [ + 9, + 65, + 1 + ] + ], + "icon": "Props/appearanceboxkaixuezixuan", + "id": 30503, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (School Festival)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 50, + 1 + ], + [ + 9, + 51, + 1 + ], + [ + 9, + 52, + 1 + ], + [ + 9, + 53, + 1 + ], + [ + 9, + 54, + 1 + ], + [ + 9, + 55, + 1 + ], + [ + 9, + 56, + 1 + ], + [ + 9, + 57, + 1 + ], + [ + 9, + 58, + 1 + ], + [ + 9, + 59, + 1 + ], + [ + 9, + 60, + 1 + ], + [ + 9, + 61, + 1 + ], + [ + 9, + 62, + 1 + ], + [ + 9, + 63, + 1 + ], + [ + 9, + 64, + 1 + ], + [ + 9, + 65, + 1 + ] + ], + "virtual_type": 0 + }, + "30504": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Empery Chic event gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 560, + 1 + ], + [ + 9, + 561, + 1 + ], + [ + 9, + 562, + 1 + ], + [ + 9, + 563, + 1 + ], + [ + 9, + 564, + 1 + ], + [ + 9, + 565, + 1 + ], + [ + 9, + 566, + 1 + ], + [ + 9, + 567, + 1 + ], + [ + 9, + 568, + 1 + ], + [ + 9, + 569, + 1 + ], + [ + 9, + 570, + 1 + ], + [ + 9, + 571, + 1 + ], + [ + 9, + 572, + 1 + ], + [ + 9, + 573, + 1 + ], + [ + 9, + 574, + 1 + ], + [ + 9, + 575, + 1 + ], + [ + 9, + 576, + 1 + ], + [ + 9, + 577, + 1 + ] + ], + "icon": "Props/appearanceboxdonghuangshishangzixuan", + "id": 30504, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Empery Chic)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 560, + 1 + ], + [ + 9, + 561, + 1 + ], + [ + 9, + 562, + 1 + ], + [ + 9, + 563, + 1 + ], + [ + 9, + 564, + 1 + ], + [ + 9, + 565, + 1 + ], + [ + 9, + 566, + 1 + ], + [ + 9, + 567, + 1 + ], + [ + 9, + 568, + 1 + ], + [ + 9, + 569, + 1 + ], + [ + 9, + 570, + 1 + ], + [ + 9, + 571, + 1 + ], + [ + 9, + 572, + 1 + ], + [ + 9, + 573, + 1 + ], + [ + 9, + 574, + 1 + ], + [ + 9, + 575, + 1 + ], + [ + 9, + 576, + 1 + ], + [ + 9, + 577, + 1 + ] + ], + "virtual_type": 0 + }, + "30505": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Royal event gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 140, + 1 + ], + [ + 9, + 141, + 1 + ], + [ + 9, + 142, + 1 + ], + [ + 9, + 143, + 1 + ], + [ + 9, + 144, + 1 + ], + [ + 9, + 145, + 1 + ], + [ + 9, + 146, + 1 + ], + [ + 9, + 147, + 1 + ], + [ + 9, + 148, + 1 + ], + [ + 9, + 149, + 1 + ], + [ + 9, + 150, + 1 + ], + [ + 9, + 151, + 1 + ], + [ + 9, + 152, + 1 + ], + [ + 9, + 153, + 1 + ], + [ + 9, + 154, + 1 + ], + [ + 9, + 155, + 1 + ], + [ + 9, + 156, + 1 + ], + [ + 9, + 157, + 1 + ] + ], + "icon": "Props/appearanceboxhuangjiazixuan", + "id": 30505, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Royal)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 140, + 1 + ], + [ + 9, + 141, + 1 + ], + [ + 9, + 142, + 1 + ], + [ + 9, + 143, + 1 + ], + [ + 9, + 144, + 1 + ], + [ + 9, + 145, + 1 + ], + [ + 9, + 146, + 1 + ], + [ + 9, + 147, + 1 + ], + [ + 9, + 148, + 1 + ], + [ + 9, + 149, + 1 + ], + [ + 9, + 150, + 1 + ], + [ + 9, + 151, + 1 + ], + [ + 9, + 152, + 1 + ], + [ + 9, + 153, + 1 + ], + [ + 9, + 154, + 1 + ], + [ + 9, + 155, + 1 + ], + [ + 9, + 156, + 1 + ], + [ + 9, + 157, + 1 + ] + ], + "virtual_type": 0 + }, + "30506": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Fairy Tale gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 580, + 1 + ], + [ + 9, + 581, + 1 + ], + [ + 9, + 582, + 1 + ], + [ + 9, + 583, + 1 + ], + [ + 9, + 584, + 1 + ], + [ + 9, + 585, + 1 + ], + [ + 9, + 586, + 1 + ], + [ + 9, + 587, + 1 + ], + [ + 9, + 588, + 1 + ], + [ + 9, + 589, + 1 + ], + [ + 9, + 590, + 1 + ], + [ + 9, + 591, + 1 + ], + [ + 9, + 592, + 1 + ], + [ + 9, + 593, + 1 + ], + [ + 9, + 594, + 1 + ], + [ + 9, + 595, + 1 + ], + [ + 9, + 596, + 1 + ], + [ + 9, + 597, + 1 + ] + ], + "icon": "Props/appearanceboxtonghuazixuan", + "id": 30506, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Fairy Tale)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 580, + 1 + ], + [ + 9, + 581, + 1 + ], + [ + 9, + 582, + 1 + ], + [ + 9, + 583, + 1 + ], + [ + 9, + 584, + 1 + ], + [ + 9, + 585, + 1 + ], + [ + 9, + 586, + 1 + ], + [ + 9, + 587, + 1 + ], + [ + 9, + 588, + 1 + ], + [ + 9, + 589, + 1 + ], + [ + 9, + 590, + 1 + ], + [ + 9, + 591, + 1 + ], + [ + 9, + 592, + 1 + ], + [ + 9, + 593, + 1 + ], + [ + 9, + 594, + 1 + ], + [ + 9, + 595, + 1 + ], + [ + 9, + 596, + 1 + ], + [ + 9, + 597, + 1 + ] + ], + "virtual_type": 0 + }, + "30507": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Stage Dance gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 600, + 1 + ], + [ + 9, + 601, + 1 + ], + [ + 9, + 602, + 1 + ], + [ + 9, + 603, + 1 + ], + [ + 9, + 604, + 1 + ], + [ + 9, + 605, + 1 + ], + [ + 9, + 606, + 1 + ], + [ + 9, + 607, + 1 + ], + [ + 9, + 608, + 1 + ], + [ + 9, + 609, + 1 + ], + [ + 9, + 610, + 1 + ], + [ + 9, + 611, + 1 + ], + [ + 9, + 612, + 1 + ], + [ + 9, + 613, + 1 + ], + [ + 9, + 614, + 1 + ], + [ + 9, + 615, + 1 + ], + [ + 9, + 616, + 1 + ], + [ + 9, + 617, + 1 + ] + ], + "icon": "Props/appearanceboxwudaozixuan", + "id": 30507, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Stage Dance)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 600, + 1 + ], + [ + 9, + 601, + 1 + ], + [ + 9, + 602, + 1 + ], + [ + 9, + 603, + 1 + ], + [ + 9, + 604, + 1 + ], + [ + 9, + 605, + 1 + ], + [ + 9, + 606, + 1 + ], + [ + 9, + 607, + 1 + ], + [ + 9, + 608, + 1 + ], + [ + 9, + 609, + 1 + ], + [ + 9, + 610, + 1 + ], + [ + 9, + 611, + 1 + ], + [ + 9, + 612, + 1 + ], + [ + 9, + 613, + 1 + ], + [ + 9, + 614, + 1 + ], + [ + 9, + 615, + 1 + ], + [ + 9, + 616, + 1 + ], + [ + 9, + 617, + 1 + ] + ], + "virtual_type": 0 + }, + "30508": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Sardegna gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 160, + 1 + ], + [ + 9, + 161, + 1 + ], + [ + 9, + 162, + 1 + ], + [ + 9, + 163, + 1 + ], + [ + 9, + 164, + 1 + ], + [ + 9, + 165, + 1 + ], + [ + 9, + 166, + 1 + ], + [ + 9, + 167, + 1 + ], + [ + 9, + 168, + 1 + ], + [ + 9, + 169, + 1 + ], + [ + 9, + 170, + 1 + ], + [ + 9, + 171, + 1 + ], + [ + 9, + 172, + 1 + ], + [ + 9, + 173, + 1 + ], + [ + 9, + 174, + 1 + ], + [ + 9, + 175, + 1 + ], + [ + 9, + 176, + 1 + ], + [ + 9, + 177, + 1 + ] + ], + "icon": "Props/appearanceboxsadingzixuan", + "id": 30508, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Sardegna)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 160, + 1 + ], + [ + 9, + 161, + 1 + ], + [ + 9, + 162, + 1 + ], + [ + 9, + 163, + 1 + ], + [ + 9, + 164, + 1 + ], + [ + 9, + 165, + 1 + ], + [ + 9, + 166, + 1 + ], + [ + 9, + 167, + 1 + ], + [ + 9, + 168, + 1 + ], + [ + 9, + 169, + 1 + ], + [ + 9, + 170, + 1 + ], + [ + 9, + 171, + 1 + ], + [ + 9, + 172, + 1 + ], + [ + 9, + 173, + 1 + ], + [ + 9, + 174, + 1 + ], + [ + 9, + 175, + 1 + ], + [ + 9, + 176, + 1 + ], + [ + 9, + 177, + 1 + ] + ], + "virtual_type": 0 + }, + "30509": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Iron Blood Icons gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 620, + 1 + ], + [ + 9, + 621, + 1 + ], + [ + 9, + 622, + 1 + ], + [ + 9, + 623, + 1 + ], + [ + 9, + 624, + 1 + ], + [ + 9, + 625, + 1 + ], + [ + 9, + 626, + 1 + ], + [ + 9, + 627, + 1 + ], + [ + 9, + 628, + 1 + ], + [ + 9, + 629, + 1 + ], + [ + 9, + 630, + 1 + ], + [ + 9, + 631, + 1 + ], + [ + 9, + 632, + 1 + ], + [ + 9, + 633, + 1 + ], + [ + 9, + 634, + 1 + ], + [ + 9, + 635, + 1 + ], + [ + 9, + 636, + 1 + ], + [ + 9, + 637, + 1 + ] + ], + "icon": "Props/appearanceboxdexibulvxieerzixuan", + "id": 30509, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Iron Blood)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 620, + 1 + ], + [ + 9, + 621, + 1 + ], + [ + 9, + 622, + 1 + ], + [ + 9, + 623, + 1 + ], + [ + 9, + 624, + 1 + ], + [ + 9, + 625, + 1 + ], + [ + 9, + 626, + 1 + ], + [ + 9, + 627, + 1 + ], + [ + 9, + 628, + 1 + ], + [ + 9, + 629, + 1 + ], + [ + 9, + 630, + 1 + ], + [ + 9, + 631, + 1 + ], + [ + 9, + 632, + 1 + ], + [ + 9, + 633, + 1 + ], + [ + 9, + 634, + 1 + ], + [ + 9, + 635, + 1 + ], + [ + 9, + 636, + 1 + ], + [ + 9, + 637, + 1 + ] + ], + "virtual_type": 0 + }, + "30510": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Academy Festival gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 638, + 1 + ], + [ + 9, + 639, + 1 + ], + [ + 9, + 640, + 1 + ], + [ + 9, + 641, + 1 + ], + [ + 9, + 642, + 1 + ], + [ + 9, + 643, + 1 + ], + [ + 9, + 644, + 1 + ], + [ + 9, + 645, + 1 + ], + [ + 9, + 646, + 1 + ], + [ + 9, + 647, + 1 + ], + [ + 9, + 648, + 1 + ], + [ + 9, + 649, + 1 + ], + [ + 9, + 650, + 1 + ], + [ + 9, + 651, + 1 + ], + [ + 9, + 652, + 1 + ], + [ + 9, + 653, + 1 + ], + [ + 9, + 654, + 1 + ], + [ + 9, + 655, + 1 + ] + ], + "icon": "Props/appearanceboxxueyuanjizixuan", + "id": 30510, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Academy Festival)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 638, + 1 + ], + [ + 9, + 639, + 1 + ], + [ + 9, + 640, + 1 + ], + [ + 9, + 641, + 1 + ], + [ + 9, + 642, + 1 + ], + [ + 9, + 643, + 1 + ], + [ + 9, + 644, + 1 + ], + [ + 9, + 645, + 1 + ], + [ + 9, + 646, + 1 + ], + [ + 9, + 647, + 1 + ], + [ + 9, + 648, + 1 + ], + [ + 9, + 649, + 1 + ], + [ + 9, + 650, + 1 + ], + [ + 9, + 651, + 1 + ], + [ + 9, + 652, + 1 + ], + [ + 9, + 653, + 1 + ], + [ + 9, + 654, + 1 + ], + [ + 9, + 655, + 1 + ] + ], + "virtual_type": 0 + }, + "30511": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive 1 Northern Parliament Style-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 220, + 1 + ], + [ + 9, + 221, + 1 + ], + [ + 9, + 222, + 1 + ], + [ + 9, + 223, + 1 + ], + [ + 9, + 224, + 1 + ], + [ + 9, + 225, + 1 + ], + [ + 9, + 226, + 1 + ], + [ + 9, + 227, + 1 + ], + [ + 9, + 228, + 1 + ], + [ + 9, + 229, + 1 + ], + [ + 9, + 230, + 1 + ], + [ + 9, + 231, + 1 + ], + [ + 9, + 232, + 1 + ], + [ + 9, + 233, + 1 + ], + [ + 9, + 234, + 1 + ], + [ + 9, + 235, + 1 + ], + [ + 9, + 236, + 1 + ], + [ + 9, + 237, + 1 + ] + ], + "icon": "Props/appearanceboxbeilianzixuan", + "id": 30511, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Northern)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 220, + 1 + ], + [ + 9, + 221, + 1 + ], + [ + 9, + 222, + 1 + ], + [ + 9, + 223, + 1 + ], + [ + 9, + 224, + 1 + ], + [ + 9, + 225, + 1 + ], + [ + 9, + 226, + 1 + ], + [ + 9, + 227, + 1 + ], + [ + 9, + 228, + 1 + ], + [ + 9, + 229, + 1 + ], + [ + 9, + 230, + 1 + ], + [ + 9, + 231, + 1 + ], + [ + 9, + 232, + 1 + ], + [ + 9, + 233, + 1 + ], + [ + 9, + 234, + 1 + ], + [ + 9, + 235, + 1 + ], + [ + 9, + 236, + 1 + ], + [ + 9, + 237, + 1 + ] + ], + "virtual_type": 0 + }, + "30512": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Spectral Festival gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 670, + 1 + ], + [ + 9, + 671, + 1 + ], + [ + 9, + 672, + 1 + ], + [ + 9, + 673, + 1 + ], + [ + 9, + 674, + 1 + ], + [ + 9, + 675, + 1 + ], + [ + 9, + 676, + 1 + ], + [ + 9, + 677, + 1 + ], + [ + 9, + 678, + 1 + ], + [ + 9, + 679, + 1 + ], + [ + 9, + 680, + 1 + ], + [ + 9, + 681, + 1 + ], + [ + 9, + 682, + 1 + ], + [ + 9, + 683, + 1 + ], + [ + 9, + 684, + 1 + ], + [ + 9, + 685, + 1 + ], + [ + 9, + 686, + 1 + ], + [ + 9, + 687, + 1 + ] + ], + "icon": "Props/appearanceboxwanshengzixuan", + "id": 30512, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Halloween)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 670, + 1 + ], + [ + 9, + 671, + 1 + ], + [ + 9, + 672, + 1 + ], + [ + 9, + 673, + 1 + ], + [ + 9, + 674, + 1 + ], + [ + 9, + 675, + 1 + ], + [ + 9, + 676, + 1 + ], + [ + 9, + 677, + 1 + ], + [ + 9, + 678, + 1 + ], + [ + 9, + 679, + 1 + ], + [ + 9, + 680, + 1 + ], + [ + 9, + 681, + 1 + ], + [ + 9, + 682, + 1 + ], + [ + 9, + 683, + 1 + ], + [ + 9, + 684, + 1 + ], + [ + 9, + 685, + 1 + ], + [ + 9, + 686, + 1 + ], + [ + 9, + 687, + 1 + ] + ], + "virtual_type": 0 + }, + "30513": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Alchemist's Workshop gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1200, + 1 + ], + [ + 9, + 1201, + 1 + ], + [ + 9, + 1202, + 1 + ], + [ + 9, + 1203, + 1 + ], + [ + 9, + 1204, + 1 + ], + [ + 9, + 1205, + 1 + ], + [ + 9, + 1206, + 1 + ], + [ + 9, + 1207, + 1 + ], + [ + 9, + 1208, + 1 + ], + [ + 9, + 1209, + 1 + ], + [ + 9, + 1210, + 1 + ], + [ + 9, + 1211, + 1 + ], + [ + 9, + 1212, + 1 + ], + [ + 9, + 1213, + 1 + ], + [ + 9, + 1214, + 1 + ], + [ + 9, + 1215, + 1 + ], + [ + 9, + 1216, + 1 + ], + [ + 9, + 1217, + 1 + ] + ], + "icon": "Props/appearanceboxlaishazixuan", + "id": 30513, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Atelier Ryza)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 1200, + 1 + ], + [ + 9, + 1201, + 1 + ], + [ + 9, + 1202, + 1 + ], + [ + 9, + 1203, + 1 + ], + [ + 9, + 1204, + 1 + ], + [ + 9, + 1205, + 1 + ], + [ + 9, + 1206, + 1 + ], + [ + 9, + 1207, + 1 + ], + [ + 9, + 1208, + 1 + ], + [ + 9, + 1209, + 1 + ], + [ + 9, + 1210, + 1 + ], + [ + 9, + 1211, + 1 + ], + [ + 9, + 1212, + 1 + ], + [ + 9, + 1213, + 1 + ], + [ + 9, + 1214, + 1 + ], + [ + 9, + 1215, + 1 + ], + [ + 9, + 1216, + 1 + ], + [ + 9, + 1217, + 1 + ] + ], + "virtual_type": 0 + }, + "30514": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Eagle Union Staples gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 240, + 1 + ], + [ + 9, + 241, + 1 + ], + [ + 9, + 242, + 1 + ], + [ + 9, + 243, + 1 + ], + [ + 9, + 244, + 1 + ], + [ + 9, + 245, + 1 + ], + [ + 9, + 246, + 1 + ], + [ + 9, + 247, + 1 + ], + [ + 9, + 248, + 1 + ], + [ + 9, + 249, + 1 + ], + [ + 9, + 250, + 1 + ], + [ + 9, + 251, + 1 + ], + [ + 9, + 252, + 1 + ], + [ + 9, + 253, + 1 + ], + [ + 9, + 254, + 1 + ], + [ + 9, + 255, + 1 + ], + [ + 9, + 256, + 1 + ], + [ + 9, + 257, + 1 + ] + ], + "icon": "Props/appearanceboxbaiyingzixuan", + "id": 30514, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Eagle Union)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 240, + 1 + ], + [ + 9, + 241, + 1 + ], + [ + 9, + 242, + 1 + ], + [ + 9, + 243, + 1 + ], + [ + 9, + 244, + 1 + ], + [ + 9, + 245, + 1 + ], + [ + 9, + 246, + 1 + ], + [ + 9, + 247, + 1 + ], + [ + 9, + 248, + 1 + ], + [ + 9, + 249, + 1 + ], + [ + 9, + 250, + 1 + ], + [ + 9, + 251, + 1 + ], + [ + 9, + 252, + 1 + ], + [ + 9, + 253, + 1 + ], + [ + 9, + 254, + 1 + ], + [ + 9, + 255, + 1 + ], + [ + 9, + 256, + 1 + ], + [ + 9, + 257, + 1 + ] + ], + "virtual_type": 0 + }, + "30515": { + "combination_display": [], + "compose_number": 0, + "display": "使用后可从「星辰无垠」主题外观装备中任意选择一种获得1个", + "display_effect": "", + "display_icon": [ + [ + 9, + 2001, + 1 + ], + [ + 9, + 2002, + 1 + ], + [ + 9, + 2003, + 1 + ], + [ + 9, + 2004, + 1 + ], + [ + 9, + 2005, + 1 + ], + [ + 9, + 2006, + 1 + ], + [ + 9, + 2007, + 1 + ], + [ + 9, + 2008, + 1 + ], + [ + 9, + 2009, + 1 + ], + [ + 9, + 2010, + 1 + ], + [ + 9, + 2011, + 1 + ], + [ + 9, + 2012, + 1 + ], + [ + 9, + 2013, + 1 + ] + ], + "icon": "Props/appearanceboxxingchen", + "id": 30515, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "定向外观装备箱(星辰无垠)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 2001, + 1 + ], + [ + 9, + 2002, + 1 + ], + [ + 9, + 2003, + 1 + ], + [ + 9, + 2004, + 1 + ], + [ + 9, + 2005, + 1 + ], + [ + 9, + 2006, + 1 + ], + [ + 9, + 2007, + 1 + ], + [ + 9, + 2008, + 1 + ], + [ + 9, + 2009, + 1 + ], + [ + 9, + 2010, + 1 + ], + [ + 9, + 2011, + 1 + ], + [ + 9, + 2012, + 1 + ], + [ + 9, + 2013, + 1 + ] + ], + "virtual_type": 0 + }, + "30516": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Beach Holiday gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 690, + 1 + ], + [ + 9, + 691, + 1 + ], + [ + 9, + 692, + 1 + ], + [ + 9, + 693, + 1 + ], + [ + 9, + 694, + 1 + ], + [ + 9, + 695, + 1 + ], + [ + 9, + 696, + 1 + ], + [ + 9, + 697, + 1 + ], + [ + 9, + 698, + 1 + ], + [ + 9, + 699, + 1 + ], + [ + 9, + 700, + 1 + ], + [ + 9, + 701, + 1 + ], + [ + 9, + 702, + 1 + ], + [ + 9, + 703, + 1 + ], + [ + 9, + 704, + 1 + ], + [ + 9, + 705, + 1 + ], + [ + 9, + 706, + 1 + ], + [ + 9, + 707, + 1 + ] + ], + "icon": "Props/appearanceboxjiarizixuan", + "id": 30516, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Beach Holiday)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 690, + 1 + ], + [ + 9, + 691, + 1 + ], + [ + 9, + 692, + 1 + ], + [ + 9, + 693, + 1 + ], + [ + 9, + 694, + 1 + ], + [ + 9, + 695, + 1 + ], + [ + 9, + 696, + 1 + ], + [ + 9, + 697, + 1 + ], + [ + 9, + 698, + 1 + ], + [ + 9, + 699, + 1 + ], + [ + 9, + 700, + 1 + ], + [ + 9, + 701, + 1 + ], + [ + 9, + 702, + 1 + ], + [ + 9, + 703, + 1 + ], + [ + 9, + 704, + 1 + ], + [ + 9, + 705, + 1 + ], + [ + 9, + 706, + 1 + ], + [ + 9, + 707, + 1 + ] + ], + "virtual_type": 0 + }, + "30517": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Empery Gourmet gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 710, + 1 + ], + [ + 9, + 711, + 1 + ], + [ + 9, + 712, + 1 + ], + [ + 9, + 713, + 1 + ], + [ + 9, + 714, + 1 + ], + [ + 9, + 715, + 1 + ], + [ + 9, + 716, + 1 + ], + [ + 9, + 717, + 1 + ], + [ + 9, + 718, + 1 + ], + [ + 9, + 719, + 1 + ], + [ + 9, + 720, + 1 + ], + [ + 9, + 721, + 1 + ], + [ + 9, + 722, + 1 + ], + [ + 9, + 723, + 1 + ], + [ + 9, + 724, + 1 + ], + [ + 9, + 725, + 1 + ], + [ + 9, + 726, + 1 + ], + [ + 9, + 727, + 1 + ] + ], + "icon": "Props/appearanceboxtunianchunjiezixuan", + "id": 30517, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Empery Gourmet)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 710, + 1 + ], + [ + 9, + 711, + 1 + ], + [ + 9, + 712, + 1 + ], + [ + 9, + 713, + 1 + ], + [ + 9, + 714, + 1 + ], + [ + 9, + 715, + 1 + ], + [ + 9, + 716, + 1 + ], + [ + 9, + 717, + 1 + ], + [ + 9, + 718, + 1 + ], + [ + 9, + 719, + 1 + ], + [ + 9, + 720, + 1 + ], + [ + 9, + 721, + 1 + ], + [ + 9, + 722, + 1 + ], + [ + 9, + 723, + 1 + ], + [ + 9, + 724, + 1 + ], + [ + 9, + 725, + 1 + ], + [ + 9, + 726, + 1 + ], + [ + 9, + 727, + 1 + ] + ], + "virtual_type": 0 + }, + "30518": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Iris Libre Specialties gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 260, + 1 + ], + [ + 9, + 261, + 1 + ], + [ + 9, + 262, + 1 + ], + [ + 9, + 263, + 1 + ], + [ + 9, + 264, + 1 + ], + [ + 9, + 265, + 1 + ], + [ + 9, + 266, + 1 + ], + [ + 9, + 267, + 1 + ], + [ + 9, + 268, + 1 + ], + [ + 9, + 269, + 1 + ], + [ + 9, + 270, + 1 + ], + [ + 9, + 271, + 1 + ], + [ + 9, + 272, + 1 + ], + [ + 9, + 273, + 1 + ], + [ + 9, + 274, + 1 + ], + [ + 9, + 275, + 1 + ], + [ + 9, + 276, + 1 + ], + [ + 9, + 277, + 1 + ] + ], + "icon": "Props/appearanceboxfaxizixuan", + "id": 30518, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Iris)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 260, + 1 + ], + [ + 9, + 261, + 1 + ], + [ + 9, + 262, + 1 + ], + [ + 9, + 263, + 1 + ], + [ + 9, + 264, + 1 + ], + [ + 9, + 265, + 1 + ], + [ + 9, + 266, + 1 + ], + [ + 9, + 267, + 1 + ], + [ + 9, + 268, + 1 + ], + [ + 9, + 269, + 1 + ], + [ + 9, + 270, + 1 + ], + [ + 9, + 271, + 1 + ], + [ + 9, + 272, + 1 + ], + [ + 9, + 273, + 1 + ], + [ + 9, + 274, + 1 + ], + [ + 9, + 275, + 1 + ], + [ + 9, + 276, + 1 + ], + [ + 9, + 277, + 1 + ] + ], + "virtual_type": 0 + }, + "30519": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Royal Academy gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 730, + 1 + ], + [ + 9, + 731, + 1 + ], + [ + 9, + 732, + 1 + ], + [ + 9, + 733, + 1 + ], + [ + 9, + 734, + 1 + ], + [ + 9, + 735, + 1 + ], + [ + 9, + 736, + 1 + ], + [ + 9, + 737, + 1 + ], + [ + 9, + 738, + 1 + ], + [ + 9, + 739, + 1 + ], + [ + 9, + 740, + 1 + ], + [ + 9, + 741, + 1 + ], + [ + 9, + 742, + 1 + ], + [ + 9, + 743, + 1 + ], + [ + 9, + 744, + 1 + ], + [ + 9, + 745, + 1 + ], + [ + 9, + 746, + 1 + ], + [ + 9, + 747, + 1 + ] + ], + "icon": "Props/appearanceboxhuangjiajiaoshizixuan", + "id": 30519, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Royal Academy)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 730, + 1 + ], + [ + 9, + 731, + 1 + ], + [ + 9, + 732, + 1 + ], + [ + 9, + 733, + 1 + ], + [ + 9, + 734, + 1 + ], + [ + 9, + 735, + 1 + ], + [ + 9, + 736, + 1 + ], + [ + 9, + 737, + 1 + ], + [ + 9, + 738, + 1 + ], + [ + 9, + 739, + 1 + ], + [ + 9, + 740, + 1 + ], + [ + 9, + 741, + 1 + ], + [ + 9, + 742, + 1 + ], + [ + 9, + 743, + 1 + ], + [ + 9, + 744, + 1 + ], + [ + 9, + 745, + 1 + ], + [ + 9, + 746, + 1 + ], + [ + 9, + 747, + 1 + ] + ], + "virtual_type": 0 + }, + "30520": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Medical Supplies gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 280, + 1 + ], + [ + 9, + 281, + 1 + ], + [ + 9, + 282, + 1 + ], + [ + 9, + 283, + 1 + ], + [ + 9, + 284, + 1 + ], + [ + 9, + 285, + 1 + ], + [ + 9, + 286, + 1 + ], + [ + 9, + 287, + 1 + ], + [ + 9, + 288, + 1 + ], + [ + 9, + 289, + 1 + ], + [ + 9, + 290, + 1 + ], + [ + 9, + 291, + 1 + ], + [ + 9, + 292, + 1 + ], + [ + 9, + 293, + 1 + ], + [ + 9, + 294, + 1 + ], + [ + 9, + 295, + 1 + ], + [ + 9, + 296, + 1 + ], + [ + 9, + 297, + 1 + ] + ], + "icon": "Props/appearanceboxyiyuanzixuan", + "id": 30520, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Medical Supplies)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 280, + 1 + ], + [ + 9, + 281, + 1 + ], + [ + 9, + 282, + 1 + ], + [ + 9, + 283, + 1 + ], + [ + 9, + 284, + 1 + ], + [ + 9, + 285, + 1 + ], + [ + 9, + 286, + 1 + ], + [ + 9, + 287, + 1 + ], + [ + 9, + 288, + 1 + ], + [ + 9, + 289, + 1 + ], + [ + 9, + 290, + 1 + ], + [ + 9, + 291, + 1 + ], + [ + 9, + 292, + 1 + ], + [ + 9, + 293, + 1 + ], + [ + 9, + 294, + 1 + ], + [ + 9, + 295, + 1 + ], + [ + 9, + 296, + 1 + ], + [ + 9, + 297, + 1 + ] + ], + "virtual_type": 0 + }, + "30521": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Venus Vacation-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 340, + 1 + ], + [ + 9, + 341, + 1 + ], + [ + 9, + 342, + 1 + ], + [ + 9, + 343, + 1 + ], + [ + 9, + 344, + 1 + ], + [ + 9, + 345, + 1 + ], + [ + 9, + 346, + 1 + ], + [ + 9, + 347, + 1 + ], + [ + 9, + 348, + 1 + ], + [ + 9, + 349, + 1 + ], + [ + 9, + 350, + 1 + ], + [ + 9, + 351, + 1 + ], + [ + 9, + 352, + 1 + ], + [ + 9, + 353, + 1 + ], + [ + 9, + 354, + 1 + ], + [ + 9, + 355, + 1 + ], + [ + 9, + 356, + 1 + ], + [ + 9, + 357, + 1 + ] + ], + "icon": "Props/appearanceboxdoazixuan", + "id": 30521, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Venus Vacation)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 340, + 1 + ], + [ + 9, + 341, + 1 + ], + [ + 9, + 342, + 1 + ], + [ + 9, + 343, + 1 + ], + [ + 9, + 344, + 1 + ], + [ + 9, + 345, + 1 + ], + [ + 9, + 346, + 1 + ], + [ + 9, + 347, + 1 + ], + [ + 9, + 348, + 1 + ], + [ + 9, + 349, + 1 + ], + [ + 9, + 350, + 1 + ], + [ + 9, + 351, + 1 + ], + [ + 9, + 352, + 1 + ], + [ + 9, + 353, + 1 + ], + [ + 9, + 354, + 1 + ], + [ + 9, + 355, + 1 + ], + [ + 9, + 356, + 1 + ], + [ + 9, + 357, + 1 + ] + ], + "virtual_type": 0 + }, + "30522": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Deserted Island-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 750, + 1 + ], + [ + 9, + 751, + 1 + ], + [ + 9, + 752, + 1 + ], + [ + 9, + 753, + 1 + ], + [ + 9, + 754, + 1 + ], + [ + 9, + 755, + 1 + ], + [ + 9, + 756, + 1 + ], + [ + 9, + 757, + 1 + ], + [ + 9, + 758, + 1 + ], + [ + 9, + 759, + 1 + ], + [ + 9, + 760, + 1 + ], + [ + 9, + 761, + 1 + ], + [ + 9, + 762, + 1 + ], + [ + 9, + 763, + 1 + ], + [ + 9, + 764, + 1 + ], + [ + 9, + 765, + 1 + ], + [ + 9, + 766, + 1 + ], + [ + 9, + 767, + 1 + ] + ], + "icon": "Props/appearanceboxhaidaomaoxianzixuan", + "id": 30522, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Deserted Island)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 750, + 1 + ], + [ + 9, + 751, + 1 + ], + [ + 9, + 752, + 1 + ], + [ + 9, + 753, + 1 + ], + [ + 9, + 754, + 1 + ], + [ + 9, + 755, + 1 + ], + [ + 9, + 756, + 1 + ], + [ + 9, + 757, + 1 + ], + [ + 9, + 758, + 1 + ], + [ + 9, + 759, + 1 + ], + [ + 9, + 760, + 1 + ], + [ + 9, + 761, + 1 + ], + [ + 9, + 762, + 1 + ], + [ + 9, + 763, + 1 + ], + [ + 9, + 764, + 1 + ], + [ + 9, + 765, + 1 + ], + [ + 9, + 766, + 1 + ], + [ + 9, + 767, + 1 + ] + ], + "virtual_type": 0 + }, + "30523": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Sakura-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 300, + 1 + ], + [ + 9, + 301, + 1 + ], + [ + 9, + 302, + 1 + ], + [ + 9, + 303, + 1 + ], + [ + 9, + 304, + 1 + ], + [ + 9, + 305, + 1 + ], + [ + 9, + 306, + 1 + ], + [ + 9, + 307, + 1 + ], + [ + 9, + 308, + 1 + ], + [ + 9, + 309, + 1 + ], + [ + 9, + 310, + 1 + ], + [ + 9, + 311, + 1 + ], + [ + 9, + 312, + 1 + ], + [ + 9, + 313, + 1 + ], + [ + 9, + 314, + 1 + ], + [ + 9, + 315, + 1 + ], + [ + 9, + 316, + 1 + ], + [ + 9, + 317, + 1 + ] + ], + "icon": "Props/appearanceboxchongyingzixuan", + "id": 30523, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Sakura)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 300, + 1 + ], + [ + 9, + 301, + 1 + ], + [ + 9, + 302, + 1 + ], + [ + 9, + 303, + 1 + ], + [ + 9, + 304, + 1 + ], + [ + 9, + 305, + 1 + ], + [ + 9, + 306, + 1 + ], + [ + 9, + 307, + 1 + ], + [ + 9, + 308, + 1 + ], + [ + 9, + 309, + 1 + ], + [ + 9, + 310, + 1 + ], + [ + 9, + 311, + 1 + ], + [ + 9, + 312, + 1 + ], + [ + 9, + 313, + 1 + ], + [ + 9, + 314, + 1 + ], + [ + 9, + 315, + 1 + ], + [ + 9, + 316, + 1 + ], + [ + 9, + 317, + 1 + ] + ], + "virtual_type": 0 + }, + "30524": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive 1 Manjuu Theme Park-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 400, + 1 + ], + [ + 9, + 401, + 1 + ], + [ + 9, + 402, + 1 + ], + [ + 9, + 403, + 1 + ], + [ + 9, + 404, + 1 + ], + [ + 9, + 405, + 1 + ], + [ + 9, + 406, + 1 + ], + [ + 9, + 407, + 1 + ], + [ + 9, + 408, + 1 + ], + [ + 9, + 409, + 1 + ], + [ + 9, + 410, + 1 + ], + [ + 9, + 411, + 1 + ], + [ + 9, + 412, + 1 + ], + [ + 9, + 413, + 1 + ], + [ + 9, + 414, + 1 + ], + [ + 9, + 415, + 1 + ], + [ + 9, + 416, + 1 + ], + [ + 9, + 417, + 1 + ] + ], + "icon": "Props/appearanceboxyouleyuanzixuan", + "id": 30524, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gear Skin Box (Manjuu Theme Park)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 400, + 1 + ], + [ + 9, + 401, + 1 + ], + [ + 9, + 402, + 1 + ], + [ + 9, + 403, + 1 + ], + [ + 9, + 404, + 1 + ], + [ + 9, + 405, + 1 + ], + [ + 9, + 406, + 1 + ], + [ + 9, + 407, + 1 + ], + [ + 9, + 408, + 1 + ], + [ + 9, + 409, + 1 + ], + [ + 9, + 410, + 1 + ], + [ + 9, + 411, + 1 + ], + [ + 9, + 412, + 1 + ], + [ + 9, + 413, + 1 + ], + [ + 9, + 414, + 1 + ], + [ + 9, + 415, + 1 + ], + [ + 9, + 416, + 1 + ], + [ + 9, + 417, + 1 + ] + ], + "virtual_type": 0 + }, + "30525": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 On the Job-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 780, + 1 + ], + [ + 9, + 781, + 1 + ], + [ + 9, + 782, + 1 + ], + [ + 9, + 783, + 1 + ], + [ + 9, + 784, + 1 + ], + [ + 9, + 785, + 1 + ], + [ + 9, + 786, + 1 + ], + [ + 9, + 787, + 1 + ], + [ + 9, + 788, + 1 + ], + [ + 9, + 789, + 1 + ], + [ + 9, + 790, + 1 + ], + [ + 9, + 791, + 1 + ], + [ + 9, + 792, + 1 + ], + [ + 9, + 793, + 1 + ], + [ + 9, + 794, + 1 + ], + [ + 9, + 795, + 1 + ], + [ + 9, + 796, + 1 + ], + [ + 9, + 797, + 1 + ] + ], + "icon": "Props/appearanceboxbangongshiguangzixuan", + "id": 30525, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (On the Job)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 780, + 1 + ], + [ + 9, + 781, + 1 + ], + [ + 9, + 782, + 1 + ], + [ + 9, + 783, + 1 + ], + [ + 9, + 784, + 1 + ], + [ + 9, + 785, + 1 + ], + [ + 9, + 786, + 1 + ], + [ + 9, + 787, + 1 + ], + [ + 9, + 788, + 1 + ], + [ + 9, + 789, + 1 + ], + [ + 9, + 790, + 1 + ], + [ + 9, + 791, + 1 + ], + [ + 9, + 792, + 1 + ], + [ + 9, + 793, + 1 + ], + [ + 9, + 794, + 1 + ], + [ + 9, + 795, + 1 + ], + [ + 9, + 796, + 1 + ], + [ + 9, + 797, + 1 + ] + ], + "virtual_type": 0 + }, + "30526": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Iron Blood Essentials gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 360, + 1 + ], + [ + 9, + 361, + 1 + ], + [ + 9, + 362, + 1 + ], + [ + 9, + 363, + 1 + ], + [ + 9, + 364, + 1 + ], + [ + 9, + 365, + 1 + ], + [ + 9, + 366, + 1 + ], + [ + 9, + 367, + 1 + ], + [ + 9, + 368, + 1 + ], + [ + 9, + 369, + 1 + ], + [ + 9, + 370, + 1 + ], + [ + 9, + 371, + 1 + ], + [ + 9, + 372, + 1 + ], + [ + 9, + 373, + 1 + ], + [ + 9, + 374, + 1 + ], + [ + 9, + 375, + 1 + ], + [ + 9, + 376, + 1 + ], + [ + 9, + 377, + 1 + ] + ], + "icon": "Props/appearanceboxtiexuezixuan", + "id": 30526, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Iron Blood)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 360, + 1 + ], + [ + 9, + 361, + 1 + ], + [ + 9, + 362, + 1 + ], + [ + 9, + 363, + 1 + ], + [ + 9, + 364, + 1 + ], + [ + 9, + 365, + 1 + ], + [ + 9, + 366, + 1 + ], + [ + 9, + 367, + 1 + ], + [ + 9, + 368, + 1 + ], + [ + 9, + 369, + 1 + ], + [ + 9, + 370, + 1 + ], + [ + 9, + 371, + 1 + ], + [ + 9, + 372, + 1 + ], + [ + 9, + 373, + 1 + ], + [ + 9, + 374, + 1 + ], + [ + 9, + 375, + 1 + ], + [ + 9, + 376, + 1 + ], + [ + 9, + 377, + 1 + ] + ], + "virtual_type": 0 + }, + "30527": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 SSSS-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 480, + 1 + ], + [ + 9, + 481, + 1 + ], + [ + 9, + 482, + 1 + ], + [ + 9, + 483, + 1 + ], + [ + 9, + 484, + 1 + ], + [ + 9, + 485, + 1 + ], + [ + 9, + 486, + 1 + ], + [ + 9, + 487, + 1 + ], + [ + 9, + 488, + 1 + ], + [ + 9, + 489, + 1 + ], + [ + 9, + 490, + 1 + ], + [ + 9, + 491, + 1 + ], + [ + 9, + 492, + 1 + ], + [ + 9, + 493, + 1 + ], + [ + 9, + 494, + 1 + ], + [ + 9, + 495, + 1 + ], + [ + 9, + 496, + 1 + ], + [ + 9, + 497, + 1 + ] + ], + "icon": "Props/appearanceboxsssszixuan", + "id": 30527, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (SSSS)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 480, + 1 + ], + [ + 9, + 481, + 1 + ], + [ + 9, + 482, + 1 + ], + [ + 9, + 483, + 1 + ], + [ + 9, + 484, + 1 + ], + [ + 9, + 485, + 1 + ], + [ + 9, + 486, + 1 + ], + [ + 9, + 487, + 1 + ], + [ + 9, + 488, + 1 + ], + [ + 9, + 489, + 1 + ], + [ + 9, + 490, + 1 + ], + [ + 9, + 491, + 1 + ], + [ + 9, + 492, + 1 + ], + [ + 9, + 493, + 1 + ], + [ + 9, + 494, + 1 + ], + [ + 9, + 495, + 1 + ], + [ + 9, + 496, + 1 + ], + [ + 9, + 497, + 1 + ] + ], + "virtual_type": 0 + }, + "30528": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Midsummer Night Dreamin'-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 810, + 1 + ], + [ + 9, + 811, + 1 + ], + [ + 9, + 812, + 1 + ], + [ + 9, + 813, + 1 + ], + [ + 9, + 814, + 1 + ], + [ + 9, + 815, + 1 + ], + [ + 9, + 816, + 1 + ], + [ + 9, + 817, + 1 + ], + [ + 9, + 818, + 1 + ], + [ + 9, + 819, + 1 + ], + [ + 9, + 820, + 1 + ], + [ + 9, + 821, + 1 + ], + [ + 9, + 822, + 1 + ], + [ + 9, + 823, + 1 + ], + [ + 9, + 824, + 1 + ], + [ + 9, + 825, + 1 + ], + [ + 9, + 826, + 1 + ], + [ + 9, + 827, + 1 + ] + ], + "icon": "Props/appearanceboxxiarimenghuanzixuan", + "id": 30528, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Midsummer Night Dreamin')", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 810, + 1 + ], + [ + 9, + 811, + 1 + ], + [ + 9, + 812, + 1 + ], + [ + 9, + 813, + 1 + ], + [ + 9, + 814, + 1 + ], + [ + 9, + 815, + 1 + ], + [ + 9, + 816, + 1 + ], + [ + 9, + 817, + 1 + ], + [ + 9, + 818, + 1 + ], + [ + 9, + 819, + 1 + ], + [ + 9, + 820, + 1 + ], + [ + 9, + 821, + 1 + ], + [ + 9, + 822, + 1 + ], + [ + 9, + 823, + 1 + ], + [ + 9, + 824, + 1 + ], + [ + 9, + 825, + 1 + ], + [ + 9, + 826, + 1 + ], + [ + 9, + 827, + 1 + ] + ], + "virtual_type": 0 + }, + "30529": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Spirits Eve gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 830, + 1 + ], + [ + 9, + 831, + 1 + ], + [ + 9, + 832, + 1 + ], + [ + 9, + 833, + 1 + ], + [ + 9, + 834, + 1 + ], + [ + 9, + 835, + 1 + ], + [ + 9, + 836, + 1 + ], + [ + 9, + 837, + 1 + ], + [ + 9, + 838, + 1 + ], + [ + 9, + 839, + 1 + ], + [ + 9, + 840, + 1 + ], + [ + 9, + 841, + 1 + ], + [ + 9, + 842, + 1 + ], + [ + 9, + 843, + 1 + ], + [ + 9, + 844, + 1 + ], + [ + 9, + 845, + 1 + ], + [ + 9, + 846, + 1 + ], + [ + 9, + 847, + 1 + ] + ], + "icon": "Props/appearanceboxyeyouzixuan", + "id": 30529, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Spirits Eve)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 830, + 1 + ], + [ + 9, + 831, + 1 + ], + [ + 9, + 832, + 1 + ], + [ + 9, + 833, + 1 + ], + [ + 9, + 834, + 1 + ], + [ + 9, + 835, + 1 + ], + [ + 9, + 836, + 1 + ], + [ + 9, + 837, + 1 + ], + [ + 9, + 838, + 1 + ], + [ + 9, + 839, + 1 + ], + [ + 9, + 840, + 1 + ], + [ + 9, + 841, + 1 + ], + [ + 9, + 842, + 1 + ], + [ + 9, + 843, + 1 + ], + [ + 9, + 844, + 1 + ], + [ + 9, + 845, + 1 + ], + [ + 9, + 846, + 1 + ], + [ + 9, + 847, + 1 + ] + ], + "virtual_type": 0 + }, + "30530": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Spring Festival gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 380, + 1 + ], + [ + 9, + 381, + 1 + ], + [ + 9, + 382, + 1 + ], + [ + 9, + 383, + 1 + ], + [ + 9, + 384, + 1 + ], + [ + 9, + 385, + 1 + ], + [ + 9, + 386, + 1 + ], + [ + 9, + 387, + 1 + ], + [ + 9, + 388, + 1 + ], + [ + 9, + 389, + 1 + ], + [ + 9, + 390, + 1 + ], + [ + 9, + 391, + 1 + ], + [ + 9, + 392, + 1 + ], + [ + 9, + 393, + 1 + ], + [ + 9, + 394, + 1 + ], + [ + 9, + 395, + 1 + ], + [ + 9, + 396, + 1 + ], + [ + 9, + 397, + 1 + ] + ], + "icon": "Props/appearanceboxchunjiezixuan", + "id": 30530, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Spring Festival)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 380, + 1 + ], + [ + 9, + 381, + 1 + ], + [ + 9, + 382, + 1 + ], + [ + 9, + 383, + 1 + ], + [ + 9, + 384, + 1 + ], + [ + 9, + 385, + 1 + ], + [ + 9, + 386, + 1 + ], + [ + 9, + 387, + 1 + ], + [ + 9, + 388, + 1 + ], + [ + 9, + 389, + 1 + ], + [ + 9, + 390, + 1 + ], + [ + 9, + 391, + 1 + ], + [ + 9, + 392, + 1 + ], + [ + 9, + 393, + 1 + ], + [ + 9, + 394, + 1 + ], + [ + 9, + 395, + 1 + ], + [ + 9, + 396, + 1 + ], + [ + 9, + 397, + 1 + ] + ], + "virtual_type": 0 + }, + "30531": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Pirate Gathering-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 850, + 1 + ], + [ + 9, + 851, + 1 + ], + [ + 9, + 852, + 1 + ], + [ + 9, + 853, + 1 + ], + [ + 9, + 854, + 1 + ], + [ + 9, + 855, + 1 + ], + [ + 9, + 856, + 1 + ], + [ + 9, + 857, + 1 + ], + [ + 9, + 858, + 1 + ], + [ + 9, + 859, + 1 + ], + [ + 9, + 860, + 1 + ], + [ + 9, + 861, + 1 + ], + [ + 9, + 862, + 1 + ], + [ + 9, + 863, + 1 + ], + [ + 9, + 864, + 1 + ], + [ + 9, + 865, + 1 + ], + [ + 9, + 866, + 1 + ], + [ + 9, + 867, + 1 + ] + ], + "icon": "Props/appearanceboxhaidaopiratezixuan", + "id": 30531, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Pirate)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 850, + 1 + ], + [ + 9, + 851, + 1 + ], + [ + 9, + 852, + 1 + ], + [ + 9, + 853, + 1 + ], + [ + 9, + 854, + 1 + ], + [ + 9, + 855, + 1 + ], + [ + 9, + 856, + 1 + ], + [ + 9, + 857, + 1 + ], + [ + 9, + 858, + 1 + ], + [ + 9, + 859, + 1 + ], + [ + 9, + 860, + 1 + ], + [ + 9, + 861, + 1 + ], + [ + 9, + 862, + 1 + ], + [ + 9, + 863, + 1 + ], + [ + 9, + 864, + 1 + ], + [ + 9, + 865, + 1 + ], + [ + 9, + 866, + 1 + ], + [ + 9, + 867, + 1 + ] + ], + "virtual_type": 0 + }, + "30532": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Floating Funland-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 460, + 1 + ], + [ + 9, + 461, + 1 + ], + [ + 9, + 462, + 1 + ], + [ + 9, + 463, + 1 + ], + [ + 9, + 464, + 1 + ], + [ + 9, + 465, + 1 + ], + [ + 9, + 466, + 1 + ], + [ + 9, + 467, + 1 + ], + [ + 9, + 468, + 1 + ], + [ + 9, + 469, + 1 + ], + [ + 9, + 470, + 1 + ], + [ + 9, + 471, + 1 + ], + [ + 9, + 472, + 1 + ], + [ + 9, + 473, + 1 + ], + [ + 9, + 474, + 1 + ], + [ + 9, + 475, + 1 + ], + [ + 9, + 476, + 1 + ], + [ + 9, + 477, + 1 + ] + ], + "icon": "Props/appearanceboxshuishangleyuanzixuan", + "id": 30532, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Floating Funland)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 460, + 1 + ], + [ + 9, + 461, + 1 + ], + [ + 9, + 462, + 1 + ], + [ + 9, + 463, + 1 + ], + [ + 9, + 464, + 1 + ], + [ + 9, + 465, + 1 + ], + [ + 9, + 466, + 1 + ], + [ + 9, + 467, + 1 + ], + [ + 9, + 468, + 1 + ], + [ + 9, + 469, + 1 + ], + [ + 9, + 470, + 1 + ], + [ + 9, + 471, + 1 + ], + [ + 9, + 472, + 1 + ], + [ + 9, + 473, + 1 + ], + [ + 9, + 474, + 1 + ], + [ + 9, + 475, + 1 + ], + [ + 9, + 476, + 1 + ], + [ + 9, + 477, + 1 + ] + ], + "virtual_type": 0 + }, + "30533": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Senran Kagura gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 1400, + 1 + ], + [ + 9, + 1401, + 1 + ], + [ + 9, + 1402, + 1 + ], + [ + 9, + 1403, + 1 + ], + [ + 9, + 1404, + 1 + ], + [ + 9, + 1405, + 1 + ], + [ + 9, + 1406, + 1 + ], + [ + 9, + 1407, + 1 + ], + [ + 9, + 1408, + 1 + ], + [ + 9, + 1409, + 1 + ], + [ + 9, + 1410, + 1 + ], + [ + 9, + 1411, + 1 + ], + [ + 9, + 1412, + 1 + ], + [ + 9, + 1413, + 1 + ], + [ + 9, + 1414, + 1 + ], + [ + 9, + 1415, + 1 + ], + [ + 9, + 1416, + 1 + ], + [ + 9, + 1417, + 1 + ] + ], + "icon": "Props/appearanceboxshanluanzixuan", + "id": 30533, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Kagura)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 1400, + 1 + ], + [ + 9, + 1401, + 1 + ], + [ + 9, + 1402, + 1 + ], + [ + 9, + 1403, + 1 + ], + [ + 9, + 1404, + 1 + ], + [ + 9, + 1405, + 1 + ], + [ + 9, + 1406, + 1 + ], + [ + 9, + 1407, + 1 + ], + [ + 9, + 1408, + 1 + ], + [ + 9, + 1409, + 1 + ], + [ + 9, + 1410, + 1 + ], + [ + 9, + 1411, + 1 + ], + [ + 9, + 1412, + 1 + ], + [ + 9, + 1413, + 1 + ], + [ + 9, + 1414, + 1 + ], + [ + 9, + 1415, + 1 + ], + [ + 9, + 1416, + 1 + ], + [ + 9, + 1417, + 1 + ] + ], + "virtual_type": 0 + }, + "30534": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Night Club gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 870, + 1 + ], + [ + 9, + 871, + 1 + ], + [ + 9, + 872, + 1 + ], + [ + 9, + 873, + 1 + ], + [ + 9, + 874, + 1 + ], + [ + 9, + 875, + 1 + ], + [ + 9, + 876, + 1 + ], + [ + 9, + 877, + 1 + ], + [ + 9, + 878, + 1 + ], + [ + 9, + 879, + 1 + ], + [ + 9, + 880, + 1 + ], + [ + 9, + 881, + 1 + ], + [ + 9, + 882, + 1 + ], + [ + 9, + 883, + 1 + ], + [ + 9, + 884, + 1 + ], + [ + 9, + 885, + 1 + ], + [ + 9, + 886, + 1 + ], + [ + 9, + 887, + 1 + ] + ], + "icon": "Props/appearanceboxyedianzixuan", + "id": 30534, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Night Club)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 870, + 1 + ], + [ + 9, + 871, + 1 + ], + [ + 9, + 872, + 1 + ], + [ + 9, + 873, + 1 + ], + [ + 9, + 874, + 1 + ], + [ + 9, + 875, + 1 + ], + [ + 9, + 876, + 1 + ], + [ + 9, + 877, + 1 + ], + [ + 9, + 878, + 1 + ], + [ + 9, + 879, + 1 + ], + [ + 9, + 880, + 1 + ], + [ + 9, + 881, + 1 + ], + [ + 9, + 882, + 1 + ], + [ + 9, + 883, + 1 + ], + [ + 9, + 884, + 1 + ], + [ + 9, + 885, + 1 + ], + [ + 9, + 886, + 1 + ], + [ + 9, + 887, + 1 + ] + ], + "virtual_type": 0 + }, + "30535": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Mythical Trove-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 890, + 1 + ], + [ + 9, + 891, + 1 + ], + [ + 9, + 892, + 1 + ], + [ + 9, + 893, + 1 + ], + [ + 9, + 894, + 1 + ], + [ + 9, + 895, + 1 + ], + [ + 9, + 896, + 1 + ], + [ + 9, + 897, + 1 + ], + [ + 9, + 898, + 1 + ], + [ + 9, + 899, + 1 + ], + [ + 9, + 900, + 1 + ], + [ + 9, + 901, + 1 + ], + [ + 9, + 902, + 1 + ], + [ + 9, + 903, + 1 + ], + [ + 9, + 904, + 1 + ], + [ + 9, + 905, + 1 + ], + [ + 9, + 906, + 1 + ], + [ + 9, + 907, + 1 + ] + ], + "icon": "Props/appearanceboxxianxiazixuan", + "id": 30535, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Mythical Trove)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 890, + 1 + ], + [ + 9, + 891, + 1 + ], + [ + 9, + 892, + 1 + ], + [ + 9, + 893, + 1 + ], + [ + 9, + 894, + 1 + ], + [ + 9, + 895, + 1 + ], + [ + 9, + 896, + 1 + ], + [ + 9, + 897, + 1 + ], + [ + 9, + 898, + 1 + ], + [ + 9, + 899, + 1 + ], + [ + 9, + 900, + 1 + ], + [ + 9, + 901, + 1 + ], + [ + 9, + 902, + 1 + ], + [ + 9, + 903, + 1 + ], + [ + 9, + 904, + 1 + ], + [ + 9, + 905, + 1 + ], + [ + 9, + 906, + 1 + ], + [ + 9, + 907, + 1 + ] + ], + "virtual_type": 0 + }, + "30536": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Cowboy Essentials-themed gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 440, + 1 + ], + [ + 9, + 441, + 1 + ], + [ + 9, + 442, + 1 + ], + [ + 9, + 443, + 1 + ], + [ + 9, + 444, + 1 + ], + [ + 9, + 445, + 1 + ], + [ + 9, + 446, + 1 + ], + [ + 9, + 447, + 1 + ], + [ + 9, + 448, + 1 + ], + [ + 9, + 449, + 1 + ], + [ + 9, + 450, + 1 + ], + [ + 9, + 451, + 1 + ], + [ + 9, + 452, + 1 + ], + [ + 9, + 453, + 1 + ], + [ + 9, + 454, + 1 + ], + [ + 9, + 455, + 1 + ], + [ + 9, + 456, + 1 + ], + [ + 9, + 457, + 1 + ] + ], + "icon": "Props/appearanceboxniuzaizixuan", + "id": 30536, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Cowboy Essentials)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 440, + 1 + ], + [ + 9, + 441, + 1 + ], + [ + 9, + 442, + 1 + ], + [ + 9, + 443, + 1 + ], + [ + 9, + 444, + 1 + ], + [ + 9, + 445, + 1 + ], + [ + 9, + 446, + 1 + ], + [ + 9, + 447, + 1 + ], + [ + 9, + 448, + 1 + ], + [ + 9, + 449, + 1 + ], + [ + 9, + 450, + 1 + ], + [ + 9, + 451, + 1 + ], + [ + 9, + 452, + 1 + ], + [ + 9, + 453, + 1 + ], + [ + 9, + 454, + 1 + ], + [ + 9, + 455, + 1 + ], + [ + 9, + 456, + 1 + ], + [ + 9, + 457, + 1 + ] + ], + "virtual_type": 0 + }, + "30537": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 Thieville gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 910, + 1 + ], + [ + 9, + 911, + 1 + ], + [ + 9, + 912, + 1 + ], + [ + 9, + 913, + 1 + ], + [ + 9, + 914, + 1 + ], + [ + 9, + 915, + 1 + ], + [ + 9, + 916, + 1 + ], + [ + 9, + 917, + 1 + ], + [ + 9, + 918, + 1 + ], + [ + 9, + 919, + 1 + ], + [ + 9, + 920, + 1 + ], + [ + 9, + 921, + 1 + ], + [ + 9, + 922, + 1 + ], + [ + 9, + 923, + 1 + ], + [ + 9, + 924, + 1 + ], + [ + 9, + 925, + 1 + ], + [ + 9, + 926, + 1 + ], + [ + 9, + 927, + 1 + ] + ], + "icon": "Props/appearanceboxzuiedushizixuan", + "id": 30537, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (Thieville)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 910, + 1 + ], + [ + 9, + 911, + 1 + ], + [ + 9, + 912, + 1 + ], + [ + 9, + 913, + 1 + ], + [ + 9, + 914, + 1 + ], + [ + 9, + 915, + 1 + ], + [ + 9, + 916, + 1 + ], + [ + 9, + 917, + 1 + ], + [ + 9, + 918, + 1 + ], + [ + 9, + 919, + 1 + ], + [ + 9, + 920, + 1 + ], + [ + 9, + 921, + 1 + ], + [ + 9, + 922, + 1 + ], + [ + 9, + 923, + 1 + ], + [ + 9, + 924, + 1 + ], + [ + 9, + 925, + 1 + ], + [ + 9, + 926, + 1 + ], + [ + 9, + 927, + 1 + ] + ], + "virtual_type": 0 + }, + "30538": { + "combination_display": [], + "compose_number": 0, + "display": "Can be opened to receive 1 RPG Adventure gear skin of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 9, + 930, + 1 + ], + [ + 9, + 931, + 1 + ], + [ + 9, + 932, + 1 + ], + [ + 9, + 933, + 1 + ], + [ + 9, + 934, + 1 + ], + [ + 9, + 935, + 1 + ], + [ + 9, + 936, + 1 + ], + [ + 9, + 937, + 1 + ], + [ + 9, + 938, + 1 + ], + [ + 9, + 939, + 1 + ], + [ + 9, + 940, + 1 + ], + [ + 9, + 941, + 1 + ], + [ + 9, + 942, + 1 + ], + [ + 9, + 943, + 1 + ], + [ + 9, + 944, + 1 + ], + [ + 9, + 945, + 1 + ], + [ + 9, + 946, + 1 + ], + [ + 9, + 947, + 1 + ] + ], + "icon": "Props/appearanceboxyishijiemaoxianzixuan", + "id": 30538, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Gear Skin Box (RPG Adventure)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 9, + 930, + 1 + ], + [ + 9, + 931, + 1 + ], + [ + 9, + 932, + 1 + ], + [ + 9, + 933, + 1 + ], + [ + 9, + 934, + 1 + ], + [ + 9, + 935, + 1 + ], + [ + 9, + 936, + 1 + ], + [ + 9, + 937, + 1 + ], + [ + 9, + 938, + 1 + ], + [ + 9, + 939, + 1 + ], + [ + 9, + 940, + 1 + ], + [ + 9, + 941, + 1 + ], + [ + 9, + 942, + 1 + ], + [ + 9, + 943, + 1 + ], + [ + 9, + 944, + 1 + ], + [ + 9, + 945, + 1 + ], + [ + 9, + 946, + 1 + ], + [ + 9, + 947, + 1 + ] + ], + "virtual_type": 0 + }, + "30900": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T4 Part of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 17004, + 1 + ], + [ + 2, + 17014, + 1 + ], + [ + 2, + 17024, + 1 + ], + [ + 2, + 17034, + 1 + ], + [ + 2, + 17044, + 1 + ] + ], + "icon": "Props/Wsuijibujian", + "id": 30900, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Universal T4 Part", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 17004, + 1 + ], + [ + 2, + 17014, + 1 + ], + [ + 2, + 17024, + 1 + ], + [ + 2, + 17034, + 1 + ], + [ + 2, + 17044, + 1 + ] + ], + "virtual_type": 0 + }, + "30911": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T1 R&D material of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18101, + 1 + ], + [ + 2, + 18104, + 1 + ], + [ + 2, + 18107, + 1 + ], + [ + 2, + 18110, + 1 + ] + ], + "icon": "Props/Wsucaixiang3", + "id": 30911, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T1 Custom Gear Lab Material Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18101, + 1 + ], + [ + 2, + 18104, + 1 + ], + [ + 2, + 18107, + 1 + ], + [ + 2, + 18110, + 1 + ] + ], + "virtual_type": 0 + }, + "30912": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T2 R&D material of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18102, + 1 + ], + [ + 2, + 18105, + 1 + ], + [ + 2, + 18108, + 1 + ], + [ + 2, + 18111, + 1 + ], + [ + 2, + 18113, + 1 + ], + [ + 2, + 18115, + 1 + ] + ], + "icon": "Props/Wsucaixiang2", + "id": 30912, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T2 Custom Gear Lab Material Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18102, + 1 + ], + [ + 2, + 18105, + 1 + ], + [ + 2, + 18108, + 1 + ], + [ + 2, + 18111, + 1 + ], + [ + 2, + 18113, + 1 + ], + [ + 2, + 18115, + 1 + ] + ], + "virtual_type": 0 + }, + "30913": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a T3 R&D material of your choosing.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18103, + 1 + ], + [ + 2, + 18106, + 1 + ], + [ + 2, + 18109, + 1 + ], + [ + 2, + 18112, + 1 + ], + [ + 2, + 18114, + 1 + ], + [ + 2, + 18116, + 1 + ] + ], + "icon": "Props/30913", + "id": 30913, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "T3 Custom Gear Lab Material Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18103, + 1 + ], + [ + 2, + 18106, + 1 + ], + [ + 2, + 18109, + 1 + ], + [ + 2, + 18112, + 1 + ], + [ + 2, + 18114, + 1 + ], + [ + 2, + 18116, + 1 + ] + ], + "virtual_type": 0 + }, + "30914": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a SR Gear Design Plan from the included options.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18117, + 1 + ], + [ + 2, + 18119, + 1 + ], + [ + 2, + 18121, + 1 + ], + [ + 2, + 18123, + 1 + ] + ], + "icon": "Props/Wshejitujin", + "id": 30914, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "SR Gear Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18117, + 1 + ], + [ + 2, + 18119, + 1 + ], + [ + 2, + 18121, + 1 + ], + [ + 2, + 18123, + 1 + ] + ], + "virtual_type": 0 + }, + "30915": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain a UR Gear Design Plan from the included options.", + "display_effect": "", + "display_icon": [ + [ + 2, + 18118, + 1 + ], + [ + 2, + 18120, + 1 + ], + [ + 2, + 18122, + 1 + ], + [ + 2, + 18124, + 1 + ] + ], + "icon": "Props/Wshejitucai", + "id": 30915, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "UR Gear Design Plans", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 18118, + 1 + ], + [ + 2, + 18120, + 1 + ], + [ + 2, + 18122, + 1 + ], + [ + 2, + 18124, + 1 + ] + ], + "virtual_type": 0 + }, + "40000": { + "combination_display": [], + "compose_number": 0, + "display": "Contains a large amount of Oil and loads of valuable rewards. ", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 4000 + ], + [ + 2, + 15008, + 100 + ], + [ + 2, + 61001, + 10 + ], + [ + 2, + 30113, + 20 + ], + [ + 2, + 16501, + 20 + ], + [ + 2, + 50001, + 80 + ] + ], + "icon": "ChargeIcon/box3", + "id": 40000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Weekly Free Supplies Pack ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4017, + 0, + 4000 + ], + "virtual_type": 0 + }, + "40004": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Construction Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4004, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40005": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 10 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ], + [ + 1, + 2, + 300 + ], + [ + 1, + 1, + 3000 + ] + ], + "icon": "ChargeIcon/boxLv10", + "id": 40005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 10 Pack (Old)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4005", + "virtual_type": 0 + }, + "40006": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ], + [ + 1, + 2, + 600 + ], + [ + 1, + 1, + 6000 + ] + ], + "icon": "ChargeIcon/boxLv20", + "id": 40006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 20 Pack (Old)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4006", + "virtual_type": 0 + }, + "40007": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 30 + ], + [ + 2, + 15003, + 15 + ], + [ + 1, + 6, + 100 + ], + [ + 1, + 2, + 1000 + ], + [ + 1, + 1, + 12000 + ], + [ + 2, + 16001, + 5 + ], + [ + 2, + 16011, + 5 + ], + [ + 2, + 16021, + 5 + ] + ], + "icon": "ChargeIcon/boxLv30", + "id": 40007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 30 Pack (Old)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4007", + "virtual_type": 0 + }, + "40008": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 50 + ], + [ + 2, + 15003, + 20 + ], + [ + 1, + 6, + 100 + ], + [ + 1, + 2, + 1500 + ], + [ + 1, + 1, + 20000 + ], + [ + 2, + 16002, + 5 + ], + [ + 2, + 16012, + 5 + ], + [ + 2, + 16022, + 5 + ] + ], + "icon": "ChargeIcon/boxLv50", + "id": 40008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 50 Pack (Old)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4008", + "virtual_type": 0 + }, + "40009": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2 random T3 Tech Packs and various items", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 54033, + 2 + ], + [ + 2, + 20001, + 8 + ], + [ + 2, + 15003, + 4 + ], + [ + 1, + 1, + 8000 + ] + ], + "icon": "ChargeIcon/boxDaily", + "id": 40009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Supplies Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4009, + 8000, + 0 + ], + "virtual_type": 0 + }, + "40012": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 14, + 180 + ], + [ + 2, + 30121, + 2 + ], + [ + 4, + 100001, + 1 + ], + [ + 2, + 15001, + 30 + ], + [ + 2, + 16002, + 4 + ], + [ + 2, + 16012, + 4 + ], + [ + 2, + 16022, + 4 + ], + [ + 2, + 30112, + 30 + ] + ], + "icon": "Props/support1", + "id": 40012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Commanders Support Pack I", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4012", + "virtual_type": 0 + }, + "40013": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 14, + 780 + ], + [ + 2, + 30202, + 2 + ], + [ + 2, + 30121, + 4 + ], + [ + 4, + 100001, + 1 + ], + [ + 2, + 15001, + 50 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ], + [ + 2, + 16002, + 3 + ], + [ + 2, + 16012, + 3 + ], + [ + 2, + 16022, + 3 + ], + [ + 2, + 30113, + 30 + ], + [ + 2, + 30112, + 50 + ] + ], + "icon": "Props/support2", + "id": 40013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Commanders Support Pack II", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4013", + "virtual_type": 0 + }, + "40014": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 14, + 1680 + ], + [ + 2, + 30202, + 4 + ], + [ + 2, + 30121, + 8 + ], + [ + 4, + 100011, + 1 + ], + [ + 2, + 59900, + 1000 + ], + [ + 2, + 15001, + 80 + ], + [ + 2, + 16003, + 5 + ], + [ + 2, + 16013, + 5 + ], + [ + 2, + 16023, + 5 + ], + [ + 2, + 16002, + 5 + ], + [ + 2, + 16012, + 5 + ], + [ + 2, + 16022, + 5 + ], + [ + 2, + 30113, + 100 + ], + [ + 2, + 30112, + 100 + ] + ], + "icon": "Props/support3", + "id": 40014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Commanders Support Pack III", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4014", + "virtual_type": 0 + }, + "40015": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 14, + 1980 + ], + [ + 2, + 30121, + 10 + ], + [ + 2, + 30114, + 35 + ], + [ + 2, + 30113, + 100 + ], + [ + 2, + 16003, + 10 + ], + [ + 2, + 16013, + 5 + ], + [ + 2, + 16023, + 5 + ], + [ + 2, + 42036, + 5 + ], + [ + 2, + 15008, + 500 + ], + [ + 2, + 30203, + 1 + ], + [ + 2, + 14004, + 25 + ], + [ + 4, + 100011, + 1 + ] + ], + "icon": "Props/support4", + "id": 40015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Commanders Support Pack IV", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4015", + "virtual_type": 0 + }, + "40016": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40124, + 1 + ], + [ + 2, + 42000, + 343 + ] + ], + "icon": "ChargeIcon/tech1_promotion", + "id": 40016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher & Blueprint Bundle - Series 1", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4018", + "virtual_type": 0 + }, + "40017": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40124, + 1 + ] + ], + "icon": "ChargeIcon/tech1_normal", + "id": 40017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 1", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4019", + "virtual_type": 0 + }, + "40018": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 42000, + 343 + ] + ], + "icon": "ChargeIcon/tech1_promotion", + "id": 40018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Blueprint Pack - Series 1", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4020", + "virtual_type": 0 + }, + "40019": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40125, + 1 + ], + [ + 2, + 42010, + 343 + ] + ], + "icon": "ChargeIcon/tech2_promotion", + "id": 40019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher & Blueprint Bundle - Series 2", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4021", + "virtual_type": 0 + }, + "40020": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40125, + 1 + ] + ], + "icon": "ChargeIcon/tech2_normal", + "id": 40020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 2", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4022", + "virtual_type": 0 + }, + "40021": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 42010, + 343 + ] + ], + "icon": "ChargeIcon/tech2_promotion", + "id": 40021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Blueprint Pack - Series 2", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4023", + "virtual_type": 0 + }, + "40022": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 8, + 40126, + 1 + ], + [ + 2, + 16502, + 200 + ], + [ + 4, + 100011, + 4 + ], + [ + 4, + 100001, + 4 + ], + [ + 3, + 21426, + 3 + ], + [ + 3, + 31026, + 3 + ], + [ + 3, + 42226, + 3 + ], + [ + 3, + 32226, + 3 + ], + [ + 3, + 43026, + 3 + ], + [ + 3, + 13146, + 3 + ], + [ + 3, + 14326, + 3 + ], + [ + 3, + 24146, + 3 + ], + [ + 3, + 26526, + 3 + ], + [ + 3, + 16426, + 3 + ], + [ + 3, + 5146, + 3 + ], + [ + 3, + 45126, + 3 + ], + [ + 3, + 17246, + 3 + ], + [ + 3, + 47126, + 3 + ], + [ + 3, + 28126, + 3 + ], + [ + 3, + 38126, + 3 + ], + [ + 3, + 19126, + 3 + ], + [ + 3, + 49046, + 3 + ], + [ + 3, + 45426, + 3 + ], + [ + 3, + 35526, + 3 + ], + [ + 3, + 4046, + 3 + ], + [ + 3, + 1226, + 3 + ], + [ + 3, + 1326, + 3 + ], + [ + 3, + 1426, + 3 + ], + [ + 3, + 2126, + 3 + ], + [ + 3, + 2226, + 3 + ], + [ + 3, + 2426, + 3 + ], + [ + 3, + 2546, + 3 + ], + [ + 3, + 2606, + 3 + ] + ], + "icon": "ChargeIcon/lv_70", + "id": 40022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Commander Level Boost Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4024", + "virtual_type": 0 + }, + "40023": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 16004, + 1 + ], + [ + 2, + 16014, + 1 + ], + [ + 2, + 16024, + 1 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ] + ], + "icon": "ChargeIcon/boxSkill", + "id": 40023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Skill Book Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4025", + "virtual_type": 0 + }, + "40026": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40130, + 1 + ], + [ + 2, + 42020, + 343 + ] + ], + "icon": "ChargeIcon/tech3_promotion", + "id": 40026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher & Blueprint Bundle - Series 3", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4028", + "virtual_type": 0 + }, + "40027": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 40130, + 1 + ] + ], + "icon": "ChargeIcon/tech3_normal", + "id": 40027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 3", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4029", + "virtual_type": 0 + }, + "40028": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 42020, + 343 + ] + ], + "icon": "ChargeIcon/tech3_promotion", + "id": 40028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "PR Blueprint Pack - Series 3", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4030", + "virtual_type": 0 + }, + "40029": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 14, + 3880 + ], + [ + 4, + 100021, + 1 + ], + [ + 4, + 100011, + 2 + ], + [ + 2, + 15012, + 150 + ], + [ + 2, + 16502, + 60 + ], + [ + 2, + 30113, + 150 + ] + ], + "icon": "ChargeIcon/dongzhi3", + "id": 40029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Premium Winter Gift Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4031", + "virtual_type": 0 + }, + "40031": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 10 + ] + ], + "icon": "ChargeIcon/mofangzhiyuan1", + "id": 40031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Wisdom Cube Supply Pack I", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4033", + "virtual_type": 0 + }, + "40032": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ] + ], + "icon": "ChargeIcon/mofangzhiyuan2", + "id": 40032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Wisdom Cube Supply Pack II", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4034", + "virtual_type": 0 + }, + "40033": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 30 + ] + ], + "icon": "ChargeIcon/mofangzhiyuan3", + "id": 40033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Wisdom Cube Supply Pack III", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4035", + "virtual_type": 0 + }, + "40034": { + "combination_display": [], + "compose_number": 0, + "display": "Gives 50 Cognitive Arrays and 1,000 Cognitive Chips when purchased.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15012, + 50 + ], + [ + 2, + 15008, + 1000 + ] + ], + "icon": "ChargeIcon/zhouchang1", + "id": 40034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Monthly Cognitive Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4036", + "virtual_type": 0 + }, + "40035": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 10 + ], + [ + 2, + 15003, + 5 + ], + [ + 2, + 30111, + 30 + ], + [ + 2, + 16001, + 5 + ], + [ + 2, + 16011, + 5 + ], + [ + 2, + 16021, + 5 + ], + [ + 2, + 16501, + 25 + ], + [ + 1, + 2, + 800 + ] + ], + "icon": "ChargeIcon/newboxLv10", + "id": 40035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 10 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4037, + 0, + 800 + ], + "virtual_type": 0 + }, + "40036": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 2, + 30112, + 30 + ], + [ + 2, + 30111, + 70 + ], + [ + 2, + 16002, + 5 + ], + [ + 2, + 16012, + 5 + ], + [ + 2, + 16022, + 5 + ], + [ + 2, + 16501, + 50 + ], + [ + 1, + 2, + 1600 + ] + ], + "icon": "ChargeIcon/newboxLv20", + "id": 40036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 20 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4038, + 0, + 1600 + ], + "virtual_type": 0 + }, + "40037": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 30 + ], + [ + 2, + 15003, + 15 + ], + [ + 2, + 42000, + 30 + ], + [ + 2, + 30112, + 60 + ], + [ + 2, + 16003, + 2 + ], + [ + 2, + 16013, + 2 + ], + [ + 2, + 16023, + 2 + ], + [ + 2, + 16501, + 75 + ], + [ + 2, + 30121, + 2 + ] + ], + "icon": "ChargeIcon/newboxLv30", + "id": 40037, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 30 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4039", + "virtual_type": 0 + }, + "40038": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 40 + ], + [ + 2, + 15003, + 20 + ], + [ + 2, + 20013, + 5 + ], + [ + 2, + 30113, + 80 + ], + [ + 2, + 30112, + 90 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ], + [ + 2, + 16501, + 100 + ], + [ + 2, + 30121, + 2 + ] + ], + "icon": "ChargeIcon/newboxLv40", + "id": 40038, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 40 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4040", + "virtual_type": 0 + }, + "40039": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 50 + ], + [ + 2, + 15003, + 25 + ], + [ + 2, + 42017, + 10 + ], + [ + 2, + 30113, + 120 + ], + [ + 2, + 30112, + 120 + ], + [ + 2, + 16003, + 4 + ], + [ + 2, + 16013, + 4 + ], + [ + 2, + 16023, + 4 + ], + [ + 2, + 16501, + 125 + ], + [ + 2, + 30121, + 2 + ] + ], + "icon": "ChargeIcon/newboxLv50", + "id": 40039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 50 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4041", + "virtual_type": 0 + }, + "40040": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 60 + ], + [ + 2, + 15003, + 30 + ], + [ + 2, + 15008, + 1000 + ], + [ + 2, + 30113, + 160 + ], + [ + 2, + 16003, + 5 + ], + [ + 2, + 16013, + 5 + ], + [ + 2, + 16023, + 5 + ], + [ + 2, + 16501, + 150 + ], + [ + 2, + 30121, + 2 + ] + ], + "icon": "ChargeIcon/newboxLv60", + "id": 40040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 60 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4042", + "virtual_type": 0 + }, + "40041": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 70 + ], + [ + 2, + 15003, + 35 + ], + [ + 2, + 42017, + 20 + ], + [ + 2, + 30113, + 200 + ], + [ + 2, + 16004, + 2 + ], + [ + 2, + 16014, + 2 + ], + [ + 2, + 16024, + 2 + ], + [ + 2, + 16501, + 175 + ], + [ + 2, + 30121, + 3 + ] + ], + "icon": "ChargeIcon/newboxLv70", + "id": 40041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 70 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4043", + "virtual_type": 0 + }, + "40042": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 80 + ], + [ + 2, + 15003, + 40 + ], + [ + 2, + 15008, + 2000 + ], + [ + 2, + 30113, + 240 + ], + [ + 2, + 16004, + 3 + ], + [ + 2, + 16014, + 3 + ], + [ + 2, + 16024, + 3 + ], + [ + 2, + 16501, + 200 + ], + [ + 2, + 30121, + 3 + ] + ], + "icon": "ChargeIcon/newboxLv80", + "id": 40042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lv. 80 Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4044", + "virtual_type": 0 + }, + "40043": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Wisdom Cube and 1,200 Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 1200 + ], + [ + 2, + 20001, + 1 + ] + ], + "icon": "ChargeIcon/richang", + "id": 40043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Sortie Refuel Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4045", + "virtual_type": 0 + }, + "40100": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2 Promise Rings", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15006, + 2 + ] + ], + "icon": "ChargeIcon/ringbox", + "id": 40100, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Promise Crate", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4100", + "virtual_type": 0 + }, + "40102": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 2000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40102, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Red Dyed Raiders Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4102, + 0, + 2000 + ], + "virtual_type": 0 + }, + "40103": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 500 Decor Tokens and 3 Full Courses", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 6, + 500 + ], + [ + 2, + 50006, + 3 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40103, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Decor Tokens Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4103", + "virtual_type": 0 + }, + "40104": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40104, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Build Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4004, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40105": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 2000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40105, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Strategic Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4102, + 0, + 2000 + ], + "virtual_type": 0 + }, + "40106": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 500 Decor Tokens and 3 Full Courses", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 6, + 500 + ], + [ + 2, + 50006, + 3 + ] + ], + "icon": "ChargeIcon/boxFur", + "id": 40106, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Decor Tokens Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4106", + "virtual_type": 0 + }, + "40107": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 3000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40107, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Raiders Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4003, + 0, + 3000 + ], + "virtual_type": 0 + }, + "40108": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40108, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Construction Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4004, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40109": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 3000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40109, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Divergent Chessboard Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4003, + 0, + 3000 + ], + "virtual_type": 0 + }, + "40113": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 2000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40113, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fallen Wings Strategic Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4102, + 0, + 2000 + ], + "virtual_type": 0 + }, + "40114": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40114, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fallen Wings Construction Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4004, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40117": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 2, + 2000 + ] + ], + "icon": "ChargeIcon/boxOil", + "id": 40117, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Strategic Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4102, + 0, + 2000 + ], + "virtual_type": 0 + }, + "40118": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/boxBuild", + "id": 40118, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Build Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4004, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40119": { + "combination_display": [], + "compose_number": 0, + "display": "Gives 1,000 Cognitive Chips when purchased.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15008, + 1000 + ] + ], + "icon": "ChargeIcon/boxChips", + "id": 40119, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cognitive Chip Pack ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4016", + "virtual_type": 0 + }, + "40121": { + "combination_display": [], + "compose_number": 0, + "display": "Buy this pack to receive EXP Pack T2 x 100.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 16502, + 100 + ] + ], + "icon": "ChargeIcon/boxExp", + "id": 40121, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shipgirl EXP Pack (Campaign)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4201", + "virtual_type": 0 + }, + "40122": { + "combination_display": [], + "compose_number": 0, + "display": "Buy this pack to receive a large number of Skill Books.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 16004, + 1 + ], + [ + 2, + 16014, + 1 + ], + [ + 2, + 16024, + 1 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ] + ], + "icon": "ChargeIcon/boxSkill_newserver", + "id": 40122, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Skill Book Pack (Campaign)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4202", + "virtual_type": 0 + }, + "40124": { + "combination_display": [], + "compose_number": 0, + "display": "Use this item to instantly unlock any Series 1 PR ship at Development Level 1. Eligible ships:\nMonarch, Neptune, Roon, Saint Louis, Ibuki, Izumo\nIf you already have all eligible ships, using this item will instead give you the following: \nCombat Data Pack - Series 1 x 300\nT3 General Retrofit Blueprint x 5\nT2 General Retrofit Blueprint x 10\nWisdom Cube x 5\nCoins x 20,000", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20101, + 300 + ], + [ + 2, + 30133, + 5 + ], + [ + 2, + 30132, + 10 + ], + [ + 2, + 20001, + 5 + ], + [ + 1, + 1, + 20000 + ] + ], + "icon": "Props/research1", + "id": 40124, + "index": [], + "is_world": 0, + "limit": "[{ship_unlock,29901},{ship_unlock,29902},{ship_unlock,39901},{ship_unlock,39902},{ship_unlock,49901},{ship_unlock,89901}]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4203", + "virtual_type": 0 + }, + "40125": { + "combination_display": [], + "compose_number": 0, + "display": "Use this item to instantly unlock any Series 2 PR ship at Development Level 1. Eligible ships:\nSeattle, Georgia, Kitakaze, Gascogne\nIf you already have all eligible ships, using this item will instead give you the following: \nCombat Data Pack - Series 2 x 300\nT3 General Retrofit Blueprint x 5\nT2 General Retrofit Blueprint x 10\nWisdom Cube x 5\nCoins x 20,000", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20102, + 300 + ], + [ + 2, + 30133, + 5 + ], + [ + 2, + 30132, + 10 + ], + [ + 2, + 20001, + 5 + ], + [ + 1, + 1, + 20000 + ] + ], + "icon": "Props/research2", + "id": 40125, + "index": [], + "is_world": 0, + "limit": "[{ship_unlock,19901},{ship_unlock,19902},{ship_unlock,39903},{ship_unlock,99901}]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4204", + "virtual_type": 0 + }, + "40127": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/boxBuild_newserver", + "id": 40127, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Build Supplies (Campaign)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4205", + "virtual_type": 0 + }, + "40128": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 40 + ], + [ + 2, + 15003, + 20 + ], + [ + 1, + 1, + 30000 + ] + ], + "icon": "ChargeIcon/boxBuild2", + "id": 40128, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Build Supplies II", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4206", + "virtual_type": 0 + }, + "40129": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15012, + 150 + ], + [ + 2, + 15008, + 1000 + ], + [ + 2, + 16004, + 1 + ], + [ + 2, + 16014, + 1 + ], + [ + 2, + 16024, + 1 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ] + ], + "icon": "ChargeIcon/support5", + "id": 40129, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Commander Support Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4207", + "virtual_type": 0 + }, + "40130": { + "combination_display": [], + "compose_number": 0, + "display": "Use this item to instantly unlock any Series 3 PR ship at Development Level 1. Eligible ships:\nCheshire, Mainz, Odin, Champagne\nIf you already have all eligible ships, using this item will instead give you the following: \nCombat Data Pack - Series 3 x 300\nT3 General Retrofit Blueprint x 5\nT2 General Retrofit Blueprint x 10\nWisdom Cube x 5\nCoins x 20,000", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20103, + 300 + ], + [ + 2, + 30133, + 5 + ], + [ + 2, + 30132, + 10 + ], + [ + 2, + 20001, + 5 + ], + [ + 1, + 1, + 20000 + ] + ], + "icon": "Props/research3", + "id": 40130, + "index": [], + "is_world": 0, + "limit": "[{ship_unlock,29903},{ship_unlock,49903},{ship_unlock,49904},{ship_unlock,89902}]", + "link_id": 0, + "max_num": 0, + "name": "PR Voucher - Series 3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4208", + "virtual_type": 0 + }, + "40131": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40131, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 1)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4131, + 0, + 150 + ], + "virtual_type": 0 + }, + "40132": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40132, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 2)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4132, + 0, + 150 + ], + "virtual_type": 0 + }, + "40133": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40133, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 3)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4133, + 0, + 150 + ], + "virtual_type": 0 + }, + "40134": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40134, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 4)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4134, + 0, + 150 + ], + "virtual_type": 0 + }, + "40135": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40135, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 5)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4135, + 0, + 150 + ], + "virtual_type": 0 + }, + "40136": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40136, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 6)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4136, + 0, + 150 + ], + "virtual_type": 0 + }, + "40137": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x High-Efficiency Combat Logistics Plans, 150x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 3 + ], + [ + 1, + 2, + 150 + ] + ], + "icon": "ChargeIcon/pack_free", + "id": 40137, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Free Pack (Day 7)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4137, + 0, + 150 + ], + "virtual_type": 0 + }, + "40138": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/boxBuild", + "id": 40138, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Limited Build Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usgae_drop_template", + "usage_arg": [ + 4138, + 15000, + 0 + ], + "virtual_type": 0 + }, + "40701": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 10x Wisdom Cubes and 5x Quick Finishers.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 10 + ], + [ + 2, + 15003, + 5 + ] + ], + "icon": "ChargeIcon/huiliuwuzi1", + "id": 40701, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89601", + "virtual_type": 0 + }, + "40702": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 20x Wisdom Cubes and 10x Quick Finishers.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi1", + "id": 40702, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89602", + "virtual_type": 0 + }, + "40703": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x Universal Bulin and 200x T1 EXP Data Packs.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 4, + 100001, + 1 + ], + [ + 2, + 16501, + 200 + ] + ], + "icon": "ChargeIcon/huiliuwuzi2", + "id": 40703, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89603", + "virtual_type": 0 + }, + "40704": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2x Universal Bulins and 50x T2 EXP Data Packs.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 4, + 100001, + 2 + ], + [ + 2, + 16502, + 50 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi2", + "id": 40704, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89604", + "virtual_type": 0 + }, + "40705": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x random T3 Skill Books, 9x random T2 Skill Books, and 8x random T2 Retrofit Blueprints.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 54006, + 3 + ], + [ + 2, + 54005, + 9 + ], + [ + 2, + 54050, + 8 + ] + ], + "icon": "ChargeIcon/huiliuwuzi3", + "id": 40705, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89605", + "virtual_type": 0 + }, + "40706": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3x random T4 Skill Books, 9x random T3 Skill Books, and 8x random T3 Retrofit Blueprints.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 54007, + 3 + ], + [ + 2, + 54006, + 9 + ], + [ + 2, + 54051, + 8 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi3", + "id": 40706, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89606", + "virtual_type": 0 + }, + "40707": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 150x Cognitive Chips and 4x random T4 Tech Boxes.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15008, + 150 + ], + [ + 2, + 54034, + 4 + ] + ], + "icon": "ChargeIcon/huiliuwuzi4", + "id": 40707, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89607", + "virtual_type": 0 + }, + "40708": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 300x Cognitive Chips and 8x random T4 Tech Boxes.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15008, + 300 + ], + [ + 2, + 54034, + 8 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi4", + "id": 40708, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89608", + "virtual_type": 0 + }, + "40709": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 150x Core Data and 30x Universal T3 Parts.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 59900, + 150 + ], + [ + 2, + 30113, + 30 + ] + ], + "icon": "ChargeIcon/huiliuwuzi5", + "id": 40709, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89609", + "virtual_type": 0 + }, + "40710": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 300x Core Data and 60x Universal T3 Parts.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 59900, + 300 + ], + [ + 2, + 30113, + 60 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi5", + "id": 40710, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89610", + "virtual_type": 0 + }, + "40711": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 5x Universal T4 Parts and 300x Guild Tokens.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 30114, + 5 + ], + [ + 1, + 8, + 300 + ] + ], + "icon": "ChargeIcon/huiliuwuzi6", + "id": 40711, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89611", + "virtual_type": 0 + }, + "40712": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 15x Universal T4 Parts and 800x Guild Tokens.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 30114, + 15 + ], + [ + 1, + 8, + 800 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi6", + "id": 40712, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89612", + "virtual_type": 0 + }, + "40713": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x Prototype Bulin MKII and 100x Decor Tokens.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 4, + 100011, + 1 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "ChargeIcon/huiliuwuzi7", + "id": 40713, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89613", + "virtual_type": 0 + }, + "40714": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2x Prototype Bulins MKII and 300x Decor Tokens.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 4, + 100011, + 2 + ], + [ + 1, + 6, + 300 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi7", + "id": 40714, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89614", + "virtual_type": 0 + }, + "40715": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2,000x Merits and 6x Royal Gourmets.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 3, + 2000 + ], + [ + 2, + 50005, + 6 + ] + ], + "icon": "ChargeIcon/huiliuwuzi8", + "id": 40715, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89615", + "virtual_type": 0 + }, + "40716": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 4,000x Merits and 3x Full Courses.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 1, + 3, + 4000 + ], + [ + 2, + 50006, + 3 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi8", + "id": 40716, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89616", + "virtual_type": 0 + }, + "40717": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 80x Medals of Honor and 500x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15001, + 80 + ], + [ + 1, + 2, + 500 + ] + ], + "icon": "ChargeIcon/huiliuwuzi9", + "id": 40717, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89617", + "virtual_type": 0 + }, + "40718": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 200x Medals of Honor and 1,000x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15001, + 200 + ], + [ + 1, + 2, + 1000 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi9", + "id": 40718, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89618", + "virtual_type": 0 + }, + "40719": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 5x Augment Module Cores and 15x T2 Augment Module Stones.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15014, + 5 + ], + [ + 2, + 15016, + 15 + ] + ], + "icon": "ChargeIcon/huiliuwuzi10", + "id": 40719, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89619", + "virtual_type": 0 + }, + "40720": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 10x Augment Module Cores and 3x T3 Augment Module Stones.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 15014, + 10 + ], + [ + 2, + 15017, + 3 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi10", + "id": 40720, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89620", + "virtual_type": 0 + }, + "40721": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x Super Rare Cat Box and 120x Cat Box Quick Finishers.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20013, + 1 + ], + [ + 2, + 20010, + 120 + ] + ], + "icon": "ChargeIcon/huiliuwuzi11", + "id": 40721, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89621", + "virtual_type": 0 + }, + "40722": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2x Super Rare Cat Boxes and 240x Cat Box Quick Finishers.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 20013, + 2 + ], + [ + 2, + 20010, + 240 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi11", + "id": 40722, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89622", + "virtual_type": 0 + }, + "40723": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 2x Special General Blueprints - Series 4 and 500x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 42036, + 2 + ], + [ + 1, + 2, + 500 + ] + ], + "icon": "ChargeIcon/huiliuwuzi12", + "id": 40723, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89623", + "virtual_type": 0 + }, + "40724": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 4x Special General Blueprints - Series 4 and 1,000x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 42036, + 4 + ], + [ + 1, + 2, + 1000 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi12", + "id": 40724, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89624", + "virtual_type": 0 + }, + "40725": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 20x T2 Development Materials Containers and 5x T3 Development Materials Containers.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 150001, + 20 + ], + [ + 2, + 150002, + 5 + ] + ], + "icon": "ChargeIcon/huiliuwuzi13", + "id": 40725, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89625", + "virtual_type": 0 + }, + "40726": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 10x T3 Development Materials Containers and 4x SR Gear Design Plans.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 150002, + 10 + ], + [ + 2, + 30914, + 4 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi13", + "id": 40726, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89626", + "virtual_type": 0 + }, + "40727": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 10x High-Efficiency Combat Logistics Plans and 500x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 10 + ], + [ + 1, + 2, + 500 + ] + ], + "icon": "ChargeIcon/huiliuwuzi14", + "id": 40727, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Homecoming Supply Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89627", + "virtual_type": 0 + }, + "40728": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 20x High-Efficiency Combat Logistics Plans and 1,000x Oil.", + "display_effect": "OpenBox", + "display_icon": [ + [ + 2, + 61001, + 20 + ], + [ + 1, + 2, + 1000 + ] + ], + "icon": "ChargeIcon/huiliuzuanshi14", + "id": 40728, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Luxurious Homecoming Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "89628", + "virtual_type": 0 + }, + "40903": { + "combination_display": [], + "compose_number": 0, + "display": "Shougatsu Lucky Bag contains 1 x Kimono Ship skin, 2019 x Gems, 20 x T3 General Parts, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69903, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 17003, + 20 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai51", + "id": 40903, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shougatsu Lucky Bag (2019) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4903", + "virtual_type": 0 + }, + "40904": { + "combination_display": [], + "compose_number": 0, + "display": "Lunar New Year Lucky Bag(2019) contains 1 x random Ship skin, 2019 x Gems, 50 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69904, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai52", + "id": 40904, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lunar New Year Lucky Bag (2019) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4904", + "virtual_type": 0 + }, + "40905": { + "combination_display": [], + "compose_number": 0, + "display": "Scherzo Lucky Box contains 1 x random Ship skin, 2019 x Gems, 50 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69905, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe1", + "id": 40905, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Scherzo Lucky Box ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4905", + "virtual_type": 0 + }, + "40906": { + "combination_display": [], + "compose_number": 0, + "display": "Full Dress Lucky Bag contains 1 x random Ship skin, 2019 x Gems, 50 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69906, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai58", + "id": 40906, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Full Dress Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4906", + "virtual_type": 0 + }, + "40908": { + "combination_display": [], + "compose_number": 0, + "display": "Shougatsu Lucky Bag(2020) contains 1 x random Ship skin, 2020 x Gems, 50 x Cognitive Chips, 2 x Special General Blueprint - Series 2, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69908, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42017, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai1", + "id": 40908, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shougatsu Lucky Bag (2020) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4908", + "virtual_type": 0 + }, + "40909": { + "combination_display": [], + "compose_number": 0, + "display": "Lunar New Year Lucky Bag(2020) contains 1 x random Ship skin, 2020 x Gems, 50 x Cognitive Chips, 2 x Special General Blueprint - Series 2, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69909, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42017, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai2", + "id": 40909, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lunar New Year Lucky Bag (2020) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4909", + "virtual_type": 0 + }, + "40910": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Advanced Universal Blueprints (2nd Batch), 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69910, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42017, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe1", + "id": 40910, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Exquisite Lucky Bag 2020 ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4910", + "virtual_type": 0 + }, + "40911": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Advanced Universal Blueprints (3rd Batch), 10 Quick Finishers, and 100 Furniture Coins", + "display_effect": "", + "display_icon": [ + [ + 2, + 69911, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe3", + "id": 40911, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2020 Party Dress Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4911", + "virtual_type": 0 + }, + "40912": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 3, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69912, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai3", + "id": 40912, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shougatsu Lucky Bag 2021 ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4912", + "virtual_type": 0 + }, + "40913": { + "combination_display": [], + "compose_number": 0, + "display": "Lunar New Year Lucky Bag(2021) contains 1 x random Ship skin, 2021 x Gems, 50 x Cognitive Chips, 2 x Special General Blueprint - Series 2, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69913, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai4", + "id": 40913, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lunar New Year Lucky Bag (2021)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4913", + "virtual_type": 0 + }, + "40914": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 3, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69914, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe6", + "id": 40914, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Exquisite Lucky Box 2021 ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4914", + "virtual_type": 0 + }, + "40915": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69915, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe6", + "id": 40915, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2021 Party Dress Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4915", + "virtual_type": 0 + }, + "40916": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69916, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai6", + "id": 40916, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shougatsu Lucky Box 2022 ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4916", + "virtual_type": 0 + }, + "40917": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69917, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai7", + "id": 40917, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lunar New Year Lucky Bag (2022)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4917", + "virtual_type": 0 + }, + "40918": { + "combination_display": [], + "compose_number": 0, + "display": "How goes your day, Commander? Hehe, are you looking for my clever sister, Le Malin? If so, you would do well to search somewhere less... popular~♪", + "display_effect": "", + "display_icon": [ + [ + 7, + 801072, + 1 + ] + ], + "icon": "SquareIcon/kebu_2", + "id": 40918, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Sunlight, Seaspray, and Sanctity", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4918", + "virtual_type": 0 + }, + "40919": { + "combination_display": [], + "compose_number": 0, + "display": "Buy to receive 1 random 2022 dress skin, 2 Specialized General Blueprints - Series 4, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 100 Decor Tokens, and 10 Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69919, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe8", + "id": 40919, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Exquisite Lucky Box 2022", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4919", + "virtual_type": 0 + }, + "40920": { + "combination_display": [], + "compose_number": 0, + "display": "Buy to receive 1 random 2022 party dress skin, 2 Specialized General Blueprints - Series 5, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 100 Decor Tokens, and 10 Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69920, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe8", + "id": 40920, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2022 Party Dress Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4920", + "virtual_type": 0 + }, + "40921": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "", + "display_icon": [ + [ + 2, + 20001, + 40 + ], + [ + 2, + 15003, + 20 + ], + [ + 1, + 1, + 30000 + ], + [ + 2, + 16502, + 200 + ], + [ + 2, + 15008, + 1000 + ], + [ + 2, + 16004, + 1 + ], + [ + 2, + 16014, + 1 + ], + [ + 2, + 16024, + 1 + ], + [ + 2, + 16003, + 3 + ], + [ + 2, + 16013, + 3 + ], + [ + 2, + 16023, + 3 + ], + [ + 2, + 30114, + 15 + ], + [ + 2, + 30113, + 60 + ], + [ + 1, + 3, + 20000 + ], + [ + 2, + 59900, + 1000 + ] + ], + "icon": "Props/support6", + "id": 40921, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Welcome Back Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4921", + "virtual_type": 0 + }, + "40922": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random swimsuit skin (Winter 2022), 2x Special General Blueprints - Series 5, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69922, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe10", + "id": 40922, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Winter Swimsuit Lucky Bag 2022 A", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4922", + "virtual_type": 0 + }, + "40923": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random swimsuit skin (Winter 2022), 2x Special General Blueprints - Series 5, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69923, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihe11", + "id": 40923, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Winter Swimsuit Lucky Bag 2022 B", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4923", + "virtual_type": 0 + }, + "40924": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Spring 2023 A), 2x Special General Blueprints - Series 5, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69924, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudaiqp1", + "id": 40924, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Lucky Bag 2023 A", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4924", + "virtual_type": 0 + }, + "40925": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Spring 2023 B), 2x Special General Blueprints - Series 5, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69925, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudaiqp2", + "id": 40925, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Lucky Bag 2023 B", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4925", + "virtual_type": 0 + }, + "40926": { + "combination_display": [], + "compose_number": 0, + "display": "Contains one random Summer 2023 swimsuit skin, 2x Special General Blueprint - Series 5, 2023 Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69926, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/liheus6lf", + "id": 40926, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Swimsuit Lucky Bag 2023", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4926", + "virtual_type": 0 + }, + "40927": { + "combination_display": [], + "compose_number": 0, + "display": "Contains one random Summer 2023 dress skin, 2x Special General Blueprint - Series 5, 2023 Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69927, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihecn6lf", + "id": 40927, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Exquisite Lucky Box 2023", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4927", + "virtual_type": 0 + }, + "40928": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Fashion Collection skin, 2x Special General Blueprints - Series 6, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69928, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihejp6ss", + "id": 40928, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Fashion Collection Lucky Bag", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4928", + "virtual_type": 0 + }, + "40929": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 random Autumn Classics skin, 2x Special General Blueprints - Series 6, 2023x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 69929, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/lihejp6lf", + "id": 40929, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Autumn Classics Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4929", + "virtual_type": 0 + }, + "40951": { + "combination_display": [], + "compose_number": 0, + "display": "Nep's Lucky Bag contains 1 x Nep Ship skin, 3 x Nep Gear skins, 8 x Wisdom Cubes, 4 x Quick Finishers, 100 x Decor Tokens, and 2018 x Gems", + "display_effect": "", + "display_icon": [ + [ + 2, + 69951, + 1 + ], + [ + 1, + 4, + 2018 + ], + [ + 2, + 30303, + 3 + ], + [ + 2, + 15003, + 4 + ], + [ + 2, + 20001, + 8 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/usfudai1", + "id": 40951, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Nep's Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4951", + "virtual_type": 0 + }, + "40952": { + "combination_display": [], + "compose_number": 0, + "display": "Black Friday Lucky Bag contains 1 x School Girl Ship skin, 3 x School Gear skins, 8 x Wisdom Cubes, 4 x Quick Finishers, 100 x Decor Tokens, 2018 x Gems, 1000 x Oil, and 1 x random T5 tech pack", + "display_effect": "", + "display_icon": [ + [ + 2, + 69952, + 1 + ], + [ + 1, + 4, + 2018 + ], + [ + 2, + 30305, + 3 + ], + [ + 2, + 15003, + 4 + ], + [ + 2, + 20001, + 8 + ], + [ + 1, + 6, + 100 + ], + [ + 1, + 2, + 1000 + ], + [ + 2, + 54035, + 1 + ] + ], + "icon": "Props/usfudai2", + "id": 40952, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Black Friday Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4952", + "virtual_type": 0 + }, + "40953": { + "combination_display": [], + "compose_number": 0, + "display": "Christmas Lucky Bag contains 1 x Christmas Ship skin, 3 x Christmas Gear skins, 8 x Wisdom Cubes, 4 x Quick Finishers, 100 x Decor Tokens, and 2018 x Gems ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69953, + 1 + ], + [ + 1, + 4, + 2018 + ], + [ + 2, + 30306, + 3 + ], + [ + 2, + 15003, + 4 + ], + [ + 2, + 20001, + 8 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai0", + "id": 40953, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Christmas Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4953", + "virtual_type": 0 + }, + "40954": { + "combination_display": [], + "compose_number": 0, + "display": "The pack contains 1 x Promise Ring, 1 x Universal Bulin, 10 x Quick Finishers, and 5 x Full Courses", + "display_effect": "", + "display_icon": [ + [ + 2, + 15006, + 1 + ], + [ + 4, + 100001, + 1 + ], + [ + 2, + 15003, + 10 + ], + [ + 2, + 50006, + 5 + ] + ], + "icon": "Props/fudai49", + "id": 40954, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Heartthrob Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4954", + "virtual_type": 0 + }, + "40955": { + "combination_display": [], + "compose_number": 0, + "display": "The sack contains 1 x Mystery T4 Tech Pack, 6 x Wisdom Cubes, 3 x Quick Finishers, 100 x Gems, and 3000 x Coins", + "display_effect": "", + "display_icon": [ + [ + 2, + 54039, + 1 + ], + [ + 2, + 20001, + 6 + ], + [ + 2, + 15003, + 3 + ], + [ + 1, + 4, + 100 + ], + [ + 1, + 1, + 3000 + ] + ], + "icon": "Props/fudai50", + "id": 40955, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Santa's Lucky Sack (Daily)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4955", + "virtual_type": 0 + }, + "40956": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 500 Decor Tokens and 3 Full Courses", + "display_effect": "", + "display_icon": [ + [ + 1, + 6, + 500 + ], + [ + 2, + 50006, + 3 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40956, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Decor Tokens Pack\n(Crimson Echoes)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4106", + "virtual_type": 0 + }, + "40957": { + "combination_display": [], + "compose_number": 0, + "display": "Contains loads of valuable rewards.", + "display_effect": "", + "display_icon": [ + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 1, + 15000 + ] + ], + "icon": "ChargeIcon/box4", + "id": 40957, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Lunar New Year Limited Build Supplies", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4004", + "virtual_type": 0 + }, + "40958": { + "combination_display": [], + "compose_number": 0, + "display": "Glacier Blast contains 1 x random Ship skin (Winter's Crown), 3 x random Gear skins (Winter's Crown), 20 x Wisdom Cubes, 10 x Quick Finishers, 100 x Decor Tokens, and 2019 x Gems ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69954, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 30311, + 3 + ], + [ + 2, + 15003, + 10 + ], + [ + 2, + 20001, + 20 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai53", + "id": 40958, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Glacier Blast ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4958", + "virtual_type": 0 + }, + "40959": { + "combination_display": [], + "compose_number": 0, + "display": "Hanami Lucky Bag contains 1 x random Ship skin (Hanami), 100 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, 100 x Decor Tokens, and 2019 x Gems ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69955, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 15008, + 100 + ], + [ + 2, + 15003, + 10 + ], + [ + 2, + 20001, + 20 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai54", + "id": 40959, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hanami Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4959", + "virtual_type": 0 + }, + "40960": { + "combination_display": [], + "compose_number": 0, + "display": "The sack contains 1 x Mystery Blueprint, 6 x Wisdom Cubes, 3 x Quick Finishers, 100 x Gems, and 3000 x Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 52001, + 1 + ], + [ + 1, + 4, + 100 + ], + [ + 2, + 15003, + 3 + ], + [ + 2, + 20001, + 6 + ], + [ + 1, + 1, + 3000 + ] + ], + "icon": "Props/fudai55", + "id": 40960, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Research Supply (daily) ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4960", + "virtual_type": 0 + }, + "40961": { + "combination_display": [], + "compose_number": 0, + "display": "1 x Random Ship skin", + "display_effect": "", + "display_icon": [ + [ + 2, + 69905, + 1 + ] + ], + "icon": "Props/lihe1", + "id": 40961, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Skin Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4961", + "virtual_type": 0 + }, + "40962": { + "combination_display": [], + "compose_number": 0, + "display": "1st Anniversary Lucky Bag contains 1 x random Ship skin, 2019 x Gems, 50 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69956, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai56", + "id": 40962, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "1st Anniversary Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4962", + "virtual_type": 0 + }, + "40963": { + "combination_display": [], + "compose_number": 0, + "display": "Yukata Lucky Bag contains 1 x random Ship skin, 2019 x Gems, 1 x , 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens, 1 x Super Rare Cat Box ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69957, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 2, + 20013, + 1 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai57", + "id": 40963, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Yukata Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4963", + "virtual_type": 0 + }, + "40964": { + "combination_display": [], + "compose_number": 0, + "display": "Black Friday Lucky Box contains 1 x random Ship skin, 2450 x Gems, 1 x Mystery T5 Tech Pack, 3 x Random T3 Skill Book, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69958, + 1 + ], + [ + 1, + 4, + 2450 + ], + [ + 2, + 54035, + 1 + ], + [ + 2, + 54006, + 3 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai59", + "id": 40964, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Black Friday Lucky Box ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4964", + "virtual_type": 0 + }, + "40965": { + "combination_display": [], + "compose_number": 0, + "display": "Christmas Lucky Bag contains 1 x random Ship skin, 2019 x Gems, 2000 x Oils, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69960, + 1 + ], + [ + 1, + 4, + 2019 + ], + [ + 1, + 2, + 2000 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai60", + "id": 40965, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Christmas Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4965", + "virtual_type": 0 + }, + "40966": { + "combination_display": [], + "compose_number": 0, + "display": "Upon purchase, receive 1 random character outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 10 Drills, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69961, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai61", + "id": 40966, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Crimson Echoes' Lucky Bag", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4966", + "virtual_type": 0 + }, + "40967": { + "combination_display": [], + "compose_number": 0, + "display": "Skybound Oratorio Lucky Bag contains 1 x random Ship skin, 2020 x Gems, 50 x Cognitive Chips, 20 x Wisdom Cubes, 10 x Quick Finishers, and 100 x Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69962, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai63", + "id": 40967, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Skybound Oratorio Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4967", + "virtual_type": 0 + }, + "40968": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69963, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai64", + "id": 40968, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Aurora Noctis Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4968", + "virtual_type": 0 + }, + "40969": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69964, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai65", + "id": 40969, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Summer Scherzo Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4969", + "virtual_type": 0 + }, + "40970": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Advanced Universal Blueprints (3rd Batch), 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69965, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai66", + "id": 40970, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shining Star Lucky Bag ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4970", + "virtual_type": 0 + }, + "40971": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 34 Wisdom Cubes, 2 Special General Blueprints - Series 3, 12 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69966, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 34 + ], + [ + 2, + 15003, + 12 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai67", + "id": 40971, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Azur Black Friday Lucky Box ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4971", + "virtual_type": 0 + }, + "40972": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2020 Gems, 50 Cognitive Chips, 34 Wisdom Cubes, 2 Special General Blueprints - Series 3, 12 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69967, + 1 + ], + [ + 1, + 4, + 2020 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 34 + ], + [ + 2, + 15003, + 12 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai68", + "id": 40972, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Crimson Black Friday Lucky Box ", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4972", + "virtual_type": 0 + }, + "40973": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 3, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69968, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai69", + "id": 40973, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Dawn's Rime Lucky Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4973", + "virtual_type": 0 + }, + "40974": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 3, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69969, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42026, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai70", + "id": 40974, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daedalian Hymn's Lucky Bag", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4974", + "virtual_type": 0 + }, + "40975": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Furniture Coins ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69970, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai71", + "id": 40975, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Microlayer Medley Lucky Box 2021", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4975", + "virtual_type": 0 + }, + "40976": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2021 Gems, 50 Cognitive Chips, 35 Wisdom Cubes, 2 Special General Blueprints - Series 4, 12 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69971, + 1 + ], + [ + 1, + 4, + 2021 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 35 + ], + [ + 2, + 15003, + 12 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai72", + "id": 40976, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Black Friday Lucky Music Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4976", + "virtual_type": 0 + }, + "40977": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69972, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai73", + "id": 40977, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Abyssal Refrain Lucky Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4977", + "virtual_type": 0 + }, + "40978": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 4, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69973, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42036, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai74", + "id": 40978, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Crimson Offering Lucky Chalice", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4978", + "virtual_type": 0 + }, + "40979": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 5, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69974, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai75", + "id": 40979, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Aquilifer's Ballade Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4979", + "virtual_type": 0 + }, + "40980": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 5, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69975, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai76", + "id": 40980, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "4th Anniversary Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4980", + "virtual_type": 0 + }, + "40981": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2022 Gems, 50 Cognitive Chips, 35 Wisdom Cubes, 2 Special General Blueprints - Series 5, 12 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69976, + 1 + ], + [ + 1, + 4, + 2022 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 35 + ], + [ + 2, + 15003, + 12 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai77", + "id": 40981, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Black Friday Lucky Bag (2022)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4981", + "virtual_type": 0 + }, + "40983": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 5, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69978, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai78", + "id": 40983, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Semester Lucky Pack", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4983", + "virtual_type": 0 + }, + "40984": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 5, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69979, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai79", + "id": 40984, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Onsen Souvenir Lucky Bag", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4984", + "virtual_type": 0 + }, + "40985": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 5, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69980, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42046, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai80", + "id": 40985, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Office Hour Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4985", + "virtual_type": 0 + }, + "40986": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 6, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69981, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai81", + "id": 40986, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "5th Anniversary Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4986", + "virtual_type": 0 + }, + "40987": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 20 Wisdom Cubes, 2 Special General Blueprints - Series 6, 10 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69982, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai82", + "id": 40987, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Halloween Lucky Box 2023", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4987", + "virtual_type": 0 + }, + "40988": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1980x Gems, 1x Choose-Your-Own Gift Pack I, and loads of other valuable rewards.", + "display_effect": "", + "display_icon": [ + [ + 2, + 59504, + 1 + ], + [ + 1, + 14, + 1980 + ], + [ + 2, + 15008, + 1000 + ], + [ + 2, + 30114, + 30 + ], + [ + 2, + 17003, + 20 + ], + [ + 2, + 17013, + 20 + ], + [ + 2, + 17023, + 20 + ], + [ + 2, + 17033, + 20 + ], + [ + 2, + 17043, + 20 + ] + ], + "icon": "Props/pack_198", + "id": 40988, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Choose-Your-Own Gift Pack I", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4988", + "virtual_type": 0 + }, + "40989": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 3280x Gems, 1x Choose-Your-Own Gift Pack II, and loads of other valuable rewards.", + "display_effect": "", + "display_icon": [ + [ + 2, + 59505, + 1 + ], + [ + 1, + 14, + 3280 + ], + [ + 2, + 15012, + 150 + ], + [ + 2, + 15008, + 2000 + ], + [ + 2, + 16004, + 2 + ], + [ + 2, + 16014, + 2 + ], + [ + 2, + 16024, + 2 + ], + [ + 2, + 16032, + 30 + ] + ], + "icon": "Props/pack_328", + "id": 40989, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Choose-Your-Own Gift Pack II", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4989", + "virtual_type": 0 + }, + "40990": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 60x Gems, 2x Special General Blueprints - Series 5.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42046, + 2 + ], + [ + 1, + 14, + 60 + ] + ], + "icon": "Props/pack_day1", + "id": 40990, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 1)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4990", + "virtual_type": 0 + }, + "40991": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 200x Gems.", + "display_effect": "", + "display_icon": [ + [ + 1, + 14, + 200 + ] + ], + "icon": "Props/pack_day2", + "id": 40991, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 2)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4991", + "virtual_type": 0 + }, + "40992": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x SR Gear Development Pack, 5x Universal T4 Parts.", + "display_effect": "", + "display_icon": [ + [ + 2, + 30202, + 1 + ], + [ + 2, + 30114, + 5 + ] + ], + "icon": "Props/pack_day3", + "id": 40992, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 3)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4992", + "virtual_type": 0 + }, + "40993": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 60x Gems, 1x Prototype Bulin MKII.", + "display_effect": "", + "display_icon": [ + [ + 4, + 100011, + 1 + ], + [ + 1, + 14, + 60 + ] + ], + "icon": "Props/pack_day4", + "id": 40993, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 4)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4993", + "virtual_type": 0 + }, + "40994": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 60x T2 EXP Data Packs.", + "display_effect": "", + "display_icon": [ + [ + 2, + 16502, + 60 + ] + ], + "icon": "Props/pack_day5", + "id": 40994, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 5)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4994", + "virtual_type": 0 + }, + "40995": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 10x Wisdom Cubes, 5x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 20001, + 10 + ], + [ + 2, + 15003, + 5 + ] + ], + "icon": "Props/pack_day6", + "id": 40995, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 6)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4995", + "virtual_type": 0 + }, + "40996": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 60x Gems, 2x Special General Blueprints - Series 5.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42056, + 2 + ], + [ + 1, + 14, + 60 + ] + ], + "icon": "Props/pack_day7", + "id": 40996, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Daily Paid Pack (Day 7)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4996", + "virtual_type": 0 + }, + "40997": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1 Random Outfit, 2023 Gems, 50 Cognitive Chips, 35 Wisdom Cubes, 2 Special General Blueprints - Series 6, 12 Quick Finishers, and 100 Decor Tokens ", + "display_effect": "", + "display_icon": [ + [ + 2, + 69983, + 1 + ], + [ + 1, + 4, + 2023 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 35 + ], + [ + 2, + 15003, + 12 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai83", + "id": 40997, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Black Friday Lucky Bag (2023)", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "4997", + "virtual_type": 0 + }, + "41201": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from UniversalBulin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gin", + "id": 41201, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41202": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from PrototypeBulinMKII", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kin", + "id": 41202, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41203": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cassin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaxin", + "id": 41203, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41204": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Downes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tangsi", + "id": 41204, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41205": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gridley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelideli", + "id": 41205, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41206": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Craven", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keleiwen", + "id": 41206, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41207": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from McCall", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maikaoer", + "id": 41207, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41208": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maury", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moli", + "id": 41208, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41209": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fletcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fulaiche", + "id": 41209, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41210": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from CharlesAusburne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aosiben", + "id": 41210, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41211": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Thatcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/saqieer", + "id": 41211, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41212": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aulick", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aolike", + "id": 41212, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41213": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foote", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fute", + "id": 41213, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41214": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Spence", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipengsi", + "id": 41214, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41215": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Benson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bensen", + "id": 41215, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41216": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Laffey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lafei", + "id": 41216, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41217": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sims", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximusi", + "id": 41217, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41218": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hammann", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haman", + "id": 41218, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41219": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Eldridge", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aierdeliqi", + "id": 41219, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41220": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Omaha", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aomaha", + "id": 41220, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41221": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Raleigh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoli", + "id": 41221, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41222": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Brooklyn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bulukelin", + "id": 41222, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41223": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Phoenix", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feinikesi", + "id": 41223, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41224": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Helena", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna", + "id": 41224, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41225": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Atlanta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yatelanda", + "id": 41225, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41226": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juneau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhunuo", + "id": 41226, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41227": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SanDiego", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengdiyage", + "id": 41227, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41228": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cleveland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan", + "id": 41228, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41229": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Columbia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunbiya", + "id": 41229, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41230": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pensacola", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pengsakela", + "id": 41230, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41231": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SaltLakeCity", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanhucheng", + "id": 41231, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41232": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Northampton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beianpudun", + "id": 41232, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41233": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chicago", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhijiage", + "id": 41233, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41234": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Houston", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiusidun", + "id": 41234, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41235": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Portland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/botelan", + "id": 41235, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41236": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Indianapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bolisi", + "id": 41236, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41237": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Astoria", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/asituoliya", + "id": 41237, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41238": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Quincy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kunxi", + "id": 41238, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41239": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vincennes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wensensi", + "id": 41239, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41240": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wichita", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiqita", + "id": 41240, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41241": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nevada", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/neihuada", + "id": 41241, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41242": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Oklahoma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ekelahema", + "id": 41242, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41243": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pennsylvania", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/binxifaniya", + "id": 41243, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41244": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arizona", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yalisangna", + "id": 41244, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41245": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tennessee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiannaxi", + "id": 41245, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41246": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from California", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialifuniya", + "id": 41246, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41247": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Colorado", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keluoladuo", + "id": 41247, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41248": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maryland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malilan", + "id": 41248, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41249": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from WestVirginia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xifujiniya", + "id": 41249, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41250": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from NorthCarolina", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beikaluolaina", + "id": 41250, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41251": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Washington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huashengdun", + "id": 41251, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41252": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SouthDakota", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nandaketa", + "id": 41252, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41253": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LongIsland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changdao", + "id": 41253, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41254": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bogue", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/boge", + "id": 41254, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41255": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Langley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lanli", + "id": 41255, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41256": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Lexington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liekexingdun", + "id": 41256, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41257": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Saratoga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/salatuojia", + "id": 41257, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41258": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ranger", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tujizhe", + "id": 41258, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41259": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yorktown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekecheng", + "id": 41259, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41260": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiye", + "id": 41260, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41261": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hornet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dahuangfeng", + "id": 41261, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41262": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wasp", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hufeng", + "id": 41262, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41263": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vestal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zaoshen", + "id": 41263, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41264": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Amazon", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nvjiang", + "id": 41264, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41265": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Acasta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/akasita", + "id": 41265, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41266": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ardent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rexin", + "id": 41266, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41267": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Beagle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaolietuquan", + "id": 41267, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41268": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bulldog", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dadouquan", + "id": 41268, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41269": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Comet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huixing", + "id": 41269, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41270": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Crescent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue", + "id": 41270, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41271": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cygnet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaotiane", + "id": 41271, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41272": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foxhound", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huti", + "id": 41272, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41273": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fortune", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingyunnvshen", + "id": 41273, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41274": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Grenville", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunweier", + "id": 41274, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41275": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glowworm", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yinghuochong", + "id": 41275, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41276": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Javelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoqiang", + "id": 41276, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41277": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juno", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianhou", + "id": 41277, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41278": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vampire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xixuegui", + "id": 41278, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41279": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leander", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liande", + "id": 41279, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41280": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Achilles", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajilisi", + "id": 41280, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41281": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ajax", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajiakesi", + "id": 41281, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41282": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sheffield", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiefeierde", + "id": 41282, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41283": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Edinburgh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidingbao", + "id": 41283, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41284": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Belfast", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite", + "id": 41284, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41285": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arethusa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aruituosha", + "id": 41285, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41286": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Galatea", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialadiya", + "id": 41286, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41287": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aurora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ouruola", + "id": 41287, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41288": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from London", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lundun", + "id": 41288, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41289": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shropshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiluopujun", + "id": 41289, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41290": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kente", + "id": 41290, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41291": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Suffolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/safuke", + "id": 41291, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41292": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Norfolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nuofuke", + "id": 41292, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41293": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dorsetshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duosaitejun", + "id": 41293, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41294": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from York", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yueke", + "id": 41294, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41295": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Exeter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aikesaite", + "id": 41295, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41296": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sussex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/susaikesi", + "id": 41296, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41297": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Renown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengwang", + "id": 41297, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41298": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Repulse", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fanji", + "id": 41298, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41299": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hude", + "id": 41299, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41300": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from QueenElizabeth", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yilishabai", + "id": 41300, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41301": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanzhan", + "id": 41301, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41302": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nelson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/naerxun", + "id": 41302, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41303": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Rodney", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luodeni", + "id": 41303, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41304": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prince of Wales", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiershiqinwang", + "id": 41304, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41305": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from DukeofYork", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekegongjue", + "id": 41305, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41306": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hermes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingjishen", + "id": 41306, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41307": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Unicorn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dujiaoshou", + "id": 41307, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41308": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from ArkRoyal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangjiafangzhou", + "id": 41308, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41309": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guanghui", + "id": 41309, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41310": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Victorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengli", + "id": 41310, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41311": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guangrong", + "id": 41311, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41312": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Erebus", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heianjie", + "id": 41312, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41313": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Terror", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kongbu", + "id": 41313, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41314": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Abercrombie", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/abeikelongbi", + "id": 41314, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41315": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fubuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuixue", + "id": 41315, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41316": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ayanami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lingbo", + "id": 41316, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41317": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akatsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiao", + "id": 41317, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41318": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ikazuchi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lei", + "id": 41318, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41319": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Inazuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dian", + "id": 41319, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41320": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shiratsuyu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bailu", + "id": 41320, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41321": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuudachi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xili", + "id": 41321, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41322": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shigure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiyu", + "id": 41322, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41323": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yukikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xuefeng", + "id": 41323, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41324": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kagerou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yangyan", + "id": 41324, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41325": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shiranui", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/buzhihuo", + "id": 41325, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41326": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nowaki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yefen", + "id": 41326, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41327": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatsuharu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuchun", + "id": 41327, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41328": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wakaba", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruoye", + "id": 41328, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41329": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatsushimo", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chushuang", + "id": 41329, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41330": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ariake", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/youming", + "id": 41330, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41331": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuugure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximu", + "id": 41331, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41332": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kuroshio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heichao", + "id": 41332, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41333": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Oyashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qinchao", + "id": 41333, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41334": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuubari", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xizhang", + "id": 41334, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41335": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changliang", + "id": 41335, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41336": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Isuzu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wushiling", + "id": 41336, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41337": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Abukuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/awuwei", + "id": 41337, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41338": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mogami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zuishang", + "id": 41338, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41339": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanwei", + "id": 41339, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41340": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Furutaka", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guying", + "id": 41340, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41341": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kako", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiagu", + "id": 41341, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41342": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aoba", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qingye", + "id": 41342, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41343": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kinugasa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yili", + "id": 41343, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41344": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Myoukou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/miaogao", + "id": 41344, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41345": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nachi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nazhi", + "id": 41345, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41346": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ashigara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zubing", + "id": 41346, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41347": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Takao", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gaoxiong", + "id": 41347, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41348": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Atago", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidang", + "id": 41348, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41349": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maya", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moye", + "id": 41349, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41350": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Choukai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niaohai", + "id": 41350, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41351": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kongou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingang", + "id": 41351, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41352": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiei", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/birui", + "id": 41352, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41353": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Haruna", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhenming", + "id": 41353, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41354": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kirishima", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudao", + "id": 41354, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41355": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Amagi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiancheng", + "id": 41355, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41356": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fusou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fusang", + "id": 41356, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41357": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yamashiro", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shancheng", + "id": 41357, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41358": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ise", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yishi", + "id": 41358, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41359": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hyuuga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rixiang", + "id": 41359, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41360": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagato", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changmen", + "id": 41360, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41361": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mutsu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luao", + "id": 41361, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41362": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kaga(BB)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahezhanlie", + "id": 41362, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41363": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiyou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiying", + "id": 41363, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41364": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Junyou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sunying", + "id": 41364, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41365": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Houshou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fengxiang", + "id": 41365, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41366": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shouhou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiangfeng", + "id": 41366, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41367": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ryuujou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longxiang", + "id": 41367, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41368": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akagi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng", + "id": 41368, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41369": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kaga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahe", + "id": 41369, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41370": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Souryuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/canglong", + "id": 41370, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41371": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiryuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feilong", + "id": 41371, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41372": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shoukaku", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xianghe", + "id": 41372, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41373": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zuikaku", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruihe", + "id": 41373, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41374": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Taihou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dafeng", + "id": 41374, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41375": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akashi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingshi", + "id": 41375, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41376": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeberechtMaass(Z1)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z1", + "id": 41376, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41377": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z23", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z23", + "id": 41377, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41378": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z25", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z25", + "id": 41378, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41379": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from K?nigsberg", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kenisibao", + "id": 41379, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41380": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Karlsruhe", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaersilue", + "id": 41380, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41381": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from K?ln", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelong", + "id": 41381, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41382": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leipzig", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/laibixi", + "id": 41382, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41383": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AdmiralHipper", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xipeierhaijunshangjiang", + "id": 41383, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41384": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from PrinzEugen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ougen", + "id": 41384, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41385": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Deutschland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/deyizhi", + "id": 41385, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41386": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AdmiralGrafSpee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipeibojue", + "id": 41386, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41387": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Scharnhorst", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shaenhuosite", + "id": 41387, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41388": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gneisenau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/genaisennao", + "id": 41388, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41389": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tirpitz", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tierbici", + "id": 41389, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41390": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from GrafZeppelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qibolin", + "id": 41390, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41391": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AnShan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/anshan", + "id": 41391, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41392": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from FuShun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fushun", + "id": 41392, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41393": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from ChangChun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changchun", + "id": 41393, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41394": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from TaiYuan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/taiyuan", + "id": 41394, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41395": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from YatSen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yixian", + "id": 41395, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41396": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ninghai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ninghai", + "id": 41396, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41397": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pinghai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pinghai", + "id": 41397, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41398": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Avrora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/afuleer", + "id": 41398, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41399": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bailey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beili", + "id": 41399, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41400": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from HermannKünne(Z19)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z19", + "id": 41400, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41401": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from KarlGaster(Z20)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z20", + "id": 41401, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41402": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from WilhelmHeidkamp(Z21)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z21", + "id": 41402, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41403": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z46", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z46", + "id": 41403, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41404": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kamikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shenfeng", + "id": 41404, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41405": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Matsukaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/songfeng", + "id": 41405, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41406": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mutsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/muyue", + "id": 41406, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41407": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kisaragi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruyue", + "id": 41407, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41408": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Uzuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maoyue", + "id": 41408, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41409": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minazuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shuiwuyue", + "id": 41409, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41410": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fumizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wenyue", + "id": 41410, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41411": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagatsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changyue", + "id": 41411, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41412": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikazuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanriyue", + "id": 41412, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41413": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kawakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiangfeng", + "id": 41413, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41414": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Niizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue_jp", + "id": 41414, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41415": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Harutsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chunyue", + "id": 41415, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41416": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yoizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaoyue", + "id": 41416, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41417": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Radford", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ladefute", + "id": 41417, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41418": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jenkins", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiejinsi", + "id": 41418, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41419": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nicholas", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nigulasi", + "id": 41419, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41420": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Richmond", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lishiman", + "id": 41420, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41421": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Honolulu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huonululu", + "id": 41421, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41422": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from St.Louis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengluyisi", + "id": 41422, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41423": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jupiter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiubite", + "id": 41423, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41424": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jersey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zexi", + "id": 41424, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41425": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sendai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuannei", + "id": 41425, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41426": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jintsuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shentong", + "id": 41426, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41427": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Naka", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nake", + "id": 41427, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41428": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Urakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pufeng", + "id": 41428, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41429": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Isokaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jifeng", + "id": 41429, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41430": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hamakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bangfeng", + "id": 41430, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41431": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tanikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gufeng", + "id": 41431, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41432": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikasa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanli", + "id": 41432, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41433": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Agano", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aheye", + "id": 41433, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41434": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Matchless", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudi", + "id": 41434, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41435": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Musketeer", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huoqiangshou", + "id": 41435, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41436": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fiji", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiji", + "id": 41436, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41437": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jamaica", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yamaijia", + "id": 41437, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41438": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Montpelier", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengbiliai", + "id": 41438, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41439": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Denver", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/danfo", + "id": 41439, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41440": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Asashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhaochao", + "id": 41440, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41441": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ooshio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dachao", + "id": 41441, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41442": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Michishio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/manchao", + "id": 41442, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41443": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangchao", + "id": 41443, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41444": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Belchan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite_younv", + "id": 41444, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41445": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-19", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I19", + "id": 41445, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41446": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-26", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I26", + "id": 41446, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41447": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-58", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I58", + "id": 41447, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41448": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-81", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U81", + "id": 41448, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41449": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dace", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiaoyu", + "id": 41449, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41450": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-47", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U47", + "id": 41450, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41451": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-557", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U557", + "id": 41451, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41452": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z35", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z35", + "id": 41452, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41453": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z18", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z18", + "id": 41453, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41454": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeTriomphant", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaixuan", + "id": 41454, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41455": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Forbin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fuerban", + "id": 41455, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41456": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from EmileBertin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aimierbeierding", + "id": 41456, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41457": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Surcouf", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xukufu", + "id": 41457, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41458": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeMars", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lemaer", + "id": 41458, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41459": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dunkerque", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dunkeerke", + "id": 41459, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41460": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from JeanBart", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rangbaer", + "id": 41460, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41461": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Massachusetts", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/masazhusai", + "id": 41461, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41462": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bush", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bushi", + "id": 41462, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41463": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Centaur", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/banrenma", + "id": 41463, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41464": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Essex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aisaikesi", + "id": 41464, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41465": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Albacore", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daqinghuayu", + "id": 41465, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41466": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeTemeraire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lumang", + "id": 41466, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41467": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Memphis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengfeisi", + "id": 41467, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41468": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Newcastle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niukasier", + "id": 41468, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41469": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hobby", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huobi", + "id": 41469, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41470": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kalk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keerke", + "id": 41470, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41471": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minneapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingniabolisi", + "id": 41471, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41472": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hazelwood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heizewude", + "id": 41472, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41473": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Concord", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kangkede", + "id": 41473, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41474": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qifeng", + "id": 41474, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41475": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Makinami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/juanbo", + "id": 41475, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41476": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sirius", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianlangxing", + "id": 41476, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41477": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curacao", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kulasuo", + "id": 41477, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41478": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curlew", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoyu", + "id": 41478, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41479": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kimberly", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jinboli", + "id": 41479, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41480": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mullany", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malani", + "id": 41480, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41481": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chaser", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhuiganzhe", + "id": 41481, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41498": { + "combination_display": [], + "compose_number": 0, + "display": "海王星赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haiwangxing", + "id": 41498, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41499": { + "combination_display": [], + "compose_number": 0, + "display": "君主赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/junzhu", + "id": 41499, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41500": { + "combination_display": [], + "compose_number": 0, + "display": "{namecode:152}赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yichui", + "id": 41500, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41501": { + "combination_display": [], + "compose_number": 0, + "display": "{namecode:151}赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuyun", + "id": 41501, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41502": { + "combination_display": [], + "compose_number": 0, + "display": "罗恩赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoen", + "id": 41502, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41503": { + "combination_display": [], + "compose_number": 0, + "display": "路易九世赠送的情人节礼物", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luyijiushi", + "id": 41503, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41601": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from UniversalBulin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gin", + "id": 41601, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41602": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from PrototypeBulinMKII", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kin", + "id": 41602, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41603": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cassin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaxin", + "id": 41603, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41604": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Downes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tangsi", + "id": 41604, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41605": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gridley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelideli", + "id": 41605, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41606": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Craven", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keleiwen", + "id": 41606, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41607": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from McCall", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maikaoer", + "id": 41607, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41608": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maury", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moli", + "id": 41608, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41609": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fletcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fulaiche", + "id": 41609, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41610": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from CharlesAusburne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aosiben", + "id": 41610, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41611": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Thatcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/saqieer", + "id": 41611, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41612": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aulick", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aolike", + "id": 41612, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41613": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foote", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fute", + "id": 41613, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41614": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Spence", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipengsi", + "id": 41614, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41615": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Benson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bensen", + "id": 41615, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41616": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Laffey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lafei", + "id": 41616, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41617": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sims", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximusi", + "id": 41617, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41618": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hammann", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haman", + "id": 41618, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41619": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Eldridge", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aierdeliqi", + "id": 41619, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41620": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Omaha", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aomaha", + "id": 41620, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41621": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Raleigh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoli", + "id": 41621, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41622": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Brooklyn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bulukelin", + "id": 41622, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41623": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Phoenix", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feinikesi", + "id": 41623, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41624": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Helena", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna", + "id": 41624, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41625": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Atlanta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yatelanda", + "id": 41625, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41626": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juneau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhunuo", + "id": 41626, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41627": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SanDiego", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengdiyage", + "id": 41627, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41628": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cleveland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan", + "id": 41628, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41629": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Columbia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunbiya", + "id": 41629, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41630": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pensacola", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pengsakela", + "id": 41630, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41631": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SaltLakeCity", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanhucheng", + "id": 41631, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41632": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Northampton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beianpudun", + "id": 41632, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41633": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chicago", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhijiage", + "id": 41633, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41634": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Houston", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiusidun", + "id": 41634, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41635": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Portland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/botelan", + "id": 41635, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41636": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Indianapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bolisi", + "id": 41636, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41637": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Astoria", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/asituoliya", + "id": 41637, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41638": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Quincy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kunxi", + "id": 41638, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41639": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vincennes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wensensi", + "id": 41639, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41640": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wichita", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiqita", + "id": 41640, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41641": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nevada", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/neihuada", + "id": 41641, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41642": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Oklahoma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ekelahema", + "id": 41642, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41643": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pennsylvania", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/binxifaniya", + "id": 41643, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41644": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arizona", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yalisangna", + "id": 41644, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41645": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tennessee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiannaxi", + "id": 41645, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41646": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from California", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialifuniya", + "id": 41646, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41647": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Colorado", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keluoladuo", + "id": 41647, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41648": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maryland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malilan", + "id": 41648, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41649": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from WestVirginia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xifujiniya", + "id": 41649, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41650": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from NorthCarolina", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beikaluolaina", + "id": 41650, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41651": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Washington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huashengdun", + "id": 41651, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41652": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from SouthDakota", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nandaketa", + "id": 41652, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41653": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LongIsland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changdao", + "id": 41653, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41654": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bogue", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/boge", + "id": 41654, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41655": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Langley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lanli", + "id": 41655, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41656": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Lexington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liekexingdun", + "id": 41656, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41657": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Saratoga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/salatuojia", + "id": 41657, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41658": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ranger", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tujizhe", + "id": 41658, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41659": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yorktown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekecheng", + "id": 41659, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41660": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiye", + "id": 41660, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41661": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hornet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dahuangfeng", + "id": 41661, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41662": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wasp", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hufeng", + "id": 41662, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41663": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vestal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zaoshen", + "id": 41663, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41664": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Amazon", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nvjiang", + "id": 41664, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41665": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Acasta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/akasita", + "id": 41665, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41666": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ardent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rexin", + "id": 41666, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41667": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Beagle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaolietuquan", + "id": 41667, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41668": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bulldog", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dadouquan", + "id": 41668, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41669": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Comet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huixing", + "id": 41669, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41670": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Crescent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue", + "id": 41670, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41671": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cygnet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaotiane", + "id": 41671, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41672": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foxhound", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huti", + "id": 41672, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41673": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fortune", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingyunnvshen", + "id": 41673, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41674": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Grenville", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunweier", + "id": 41674, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41675": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glowworm", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yinghuochong", + "id": 41675, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41676": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Javelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoqiang", + "id": 41676, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41677": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juno", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianhou", + "id": 41677, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41678": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vampire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xixuegui", + "id": 41678, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41679": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leander", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liande", + "id": 41679, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41680": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Achilles", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajilisi", + "id": 41680, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41681": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ajax", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajiakesi", + "id": 41681, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41682": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sheffield", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiefeierde", + "id": 41682, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41683": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Edinburgh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidingbao", + "id": 41683, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41684": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Belfast", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite", + "id": 41684, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41685": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arethusa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aruituosha", + "id": 41685, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41686": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Galatea", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialadiya", + "id": 41686, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41687": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aurora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ouruola", + "id": 41687, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41688": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from London", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lundun", + "id": 41688, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41689": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shropshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiluopujun", + "id": 41689, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41690": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kente", + "id": 41690, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41691": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Suffolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/safuke", + "id": 41691, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41692": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Norfolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nuofuke", + "id": 41692, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41693": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dorsetshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duosaitejun", + "id": 41693, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41694": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from York", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yueke", + "id": 41694, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41695": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Exeter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aikesaite", + "id": 41695, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41696": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sussex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/susaikesi", + "id": 41696, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41697": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Renown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengwang", + "id": 41697, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41698": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Repulse", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fanji", + "id": 41698, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41699": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hude", + "id": 41699, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41700": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from QueenElizabeth", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yilishabai", + "id": 41700, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41701": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanzhan", + "id": 41701, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41702": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nelson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/naerxun", + "id": 41702, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41703": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Rodney", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luodeni", + "id": 41703, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41704": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prince of Wales", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiershiqinwang", + "id": 41704, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41705": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from DukeofYork", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekegongjue", + "id": 41705, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41706": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hermes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingjishen", + "id": 41706, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41707": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Unicorn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dujiaoshou", + "id": 41707, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41708": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from ArkRoyal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangjiafangzhou", + "id": 41708, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41709": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guanghui", + "id": 41709, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41710": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Victorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengli", + "id": 41710, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41711": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guangrong", + "id": 41711, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41712": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Erebus", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heianjie", + "id": 41712, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41713": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Terror", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kongbu", + "id": 41713, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41714": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Abercrombie", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/abeikelongbi", + "id": 41714, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41715": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fubuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuixue", + "id": 41715, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41716": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ayanami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lingbo", + "id": 41716, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41717": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akatsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiao", + "id": 41717, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41718": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ikazuchi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lei", + "id": 41718, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41719": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Inazuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dian", + "id": 41719, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41720": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shiratsuyu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bailu", + "id": 41720, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41721": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuudachi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xili", + "id": 41721, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41722": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shigure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiyu", + "id": 41722, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41723": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yukikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xuefeng", + "id": 41723, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41724": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kagerou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yangyan", + "id": 41724, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41725": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shiranui", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/buzhihuo", + "id": 41725, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41726": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nowaki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yefen", + "id": 41726, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41727": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatsuharu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuchun", + "id": 41727, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41728": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wakaba", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruoye", + "id": 41728, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41729": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatsushimo", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chushuang", + "id": 41729, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41730": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ariake", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/youming", + "id": 41730, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41731": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuugure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximu", + "id": 41731, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41732": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kuroshio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heichao", + "id": 41732, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41733": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Oyashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qinchao", + "id": 41733, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41734": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yuubari", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xizhang", + "id": 41734, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41735": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changliang", + "id": 41735, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41736": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Isuzu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wushiling", + "id": 41736, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41737": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Abukuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/awuwei", + "id": 41737, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41738": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mogami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zuishang", + "id": 41738, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41739": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanwei", + "id": 41739, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41740": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Furutaka", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guying", + "id": 41740, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41741": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kako", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiagu", + "id": 41741, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41742": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aoba", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qingye", + "id": 41742, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41743": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kinugasa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yili", + "id": 41743, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41744": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Myoukou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/miaogao", + "id": 41744, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41745": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nachi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nazhi", + "id": 41745, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41746": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ashigara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zubing", + "id": 41746, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41747": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Takao", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gaoxiong", + "id": 41747, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41748": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Atago", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidang", + "id": 41748, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41749": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maya", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moye", + "id": 41749, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41750": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Choukai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niaohai", + "id": 41750, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41751": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kongou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingang", + "id": 41751, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41752": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiei", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/birui", + "id": 41752, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41753": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Haruna", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhenming", + "id": 41753, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41754": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kirishima", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudao", + "id": 41754, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41755": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Amagi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiancheng", + "id": 41755, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41756": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fusou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fusang", + "id": 41756, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41757": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yamashiro", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shancheng", + "id": 41757, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41758": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ise", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yishi", + "id": 41758, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41759": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hyuuga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rixiang", + "id": 41759, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41760": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagato", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changmen", + "id": 41760, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41761": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mutsu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luao", + "id": 41761, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41762": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kaga(BB)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahezhanlie", + "id": 41762, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41763": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiyou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiying", + "id": 41763, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41764": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Junyou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sunying", + "id": 41764, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41765": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Houshou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fengxiang", + "id": 41765, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41766": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shouhou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiangfeng", + "id": 41766, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41767": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ryuujou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longxiang", + "id": 41767, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41768": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akagi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng", + "id": 41768, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41769": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kaga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahe", + "id": 41769, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41770": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Souryuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/canglong", + "id": 41770, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41771": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiryuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feilong", + "id": 41771, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41772": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shoukaku", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xianghe", + "id": 41772, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41773": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zuikaku", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruihe", + "id": 41773, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41774": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Taihou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dafeng", + "id": 41774, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41775": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akashi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingshi", + "id": 41775, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41776": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeberechtMaass(Z1)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z1", + "id": 41776, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41777": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z23", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z23", + "id": 41777, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41778": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z25", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z25", + "id": 41778, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41779": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from K?nigsberg", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kenisibao", + "id": 41779, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41780": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Karlsruhe", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaersilue", + "id": 41780, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41781": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from K?ln", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelong", + "id": 41781, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41782": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leipzig", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/laibixi", + "id": 41782, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41783": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AdmiralHipper", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xipeierhaijunshangjiang", + "id": 41783, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41784": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from PrinzEugen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ougen", + "id": 41784, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41785": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Deutschland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/deyizhi", + "id": 41785, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41786": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AdmiralGrafSpee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipeibojue", + "id": 41786, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41787": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Scharnhorst", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shaenhuosite", + "id": 41787, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41788": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gneisenau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/genaisennao", + "id": 41788, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41789": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tirpitz", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tierbici", + "id": 41789, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41790": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from GrafZeppelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qibolin", + "id": 41790, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41791": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from AnShan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/anshan", + "id": 41791, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41792": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from FuShun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fushun", + "id": 41792, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41793": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from ChangChun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changchun", + "id": 41793, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41794": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from TaiYuan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/taiyuan", + "id": 41794, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41795": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from YatSen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yixian", + "id": 41795, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41796": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ninghai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ninghai", + "id": 41796, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41797": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pinghai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pinghai", + "id": 41797, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41798": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Avrora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/afuleer", + "id": 41798, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41799": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bailey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beili", + "id": 41799, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41800": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from HermannKünne(Z19)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z19", + "id": 41800, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41801": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from KarlGaster(Z20)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z20", + "id": 41801, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41802": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from WilhelmHeidkamp(Z21)", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z21", + "id": 41802, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41803": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z46", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z46", + "id": 41803, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41804": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kamikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shenfeng", + "id": 41804, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41805": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Matsukaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/songfeng", + "id": 41805, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41806": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mutsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/muyue", + "id": 41806, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41807": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kisaragi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruyue", + "id": 41807, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41808": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Uzuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maoyue", + "id": 41808, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41809": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minazuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shuiwuyue", + "id": 41809, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41810": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fumizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wenyue", + "id": 41810, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41811": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nagatsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changyue", + "id": 41811, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41812": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikazuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanriyue", + "id": 41812, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41813": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kawakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiangfeng", + "id": 41813, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41814": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Niizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue_jp", + "id": 41814, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41815": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Harutsuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chunyue", + "id": 41815, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41816": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yoizuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaoyue", + "id": 41816, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41817": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Radford", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ladefute", + "id": 41817, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41818": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jenkins", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiejinsi", + "id": 41818, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41819": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nicholas", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nigulasi", + "id": 41819, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41820": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Richmond", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lishiman", + "id": 41820, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41821": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Honolulu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huonululu", + "id": 41821, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41822": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from St.Louis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengluyisi", + "id": 41822, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41823": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jupiter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiubite", + "id": 41823, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41824": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jersey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zexi", + "id": 41824, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41825": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sendai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuannei", + "id": 41825, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41826": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jintsuu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shentong", + "id": 41826, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41827": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Naka", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nake", + "id": 41827, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41828": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Urakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pufeng", + "id": 41828, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41829": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Isokaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jifeng", + "id": 41829, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41830": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hamakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bangfeng", + "id": 41830, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41831": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tanikaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gufeng", + "id": 41831, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41832": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mikasa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanli", + "id": 41832, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41833": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Agano", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aheye", + "id": 41833, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41834": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Matchless", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudi", + "id": 41834, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41835": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Musketeer", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huoqiangshou", + "id": 41835, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41836": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fiji", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiji", + "id": 41836, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41837": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jamaica", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yamaijia", + "id": 41837, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41838": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Montpelier", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengbiliai", + "id": 41838, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41839": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Denver", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/danfo", + "id": 41839, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41840": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Asashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhaochao", + "id": 41840, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41841": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ooshio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dachao", + "id": 41841, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41842": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Michishio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/manchao", + "id": 41842, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41843": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arashio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangchao", + "id": 41843, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41844": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Belchan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite_younv", + "id": 41844, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41845": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-19", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I19", + "id": 41845, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41846": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-26", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I26", + "id": 41846, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41847": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-58", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I58", + "id": 41847, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41848": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-81", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U81", + "id": 41848, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41849": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dace", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiaoyu", + "id": 41849, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41850": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-47", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U47", + "id": 41850, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41851": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-557", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U557", + "id": 41851, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41852": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z35", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z35", + "id": 41852, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41853": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z18", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z18", + "id": 41853, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41854": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeTriomphant", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaixuan", + "id": 41854, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41855": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Forbin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fuerban", + "id": 41855, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41856": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from EmileBertin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aimierbeierding", + "id": 41856, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41857": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Surcouf", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xukufu", + "id": 41857, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41858": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeMars", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lemaer", + "id": 41858, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41859": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dunkerque", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dunkeerke", + "id": 41859, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41860": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from JeanBart", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rangbaer", + "id": 41860, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41861": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Massachusetts", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/masazhusai", + "id": 41861, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41862": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bush", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bushi", + "id": 41862, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41863": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Centaur", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/banrenma", + "id": 41863, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41864": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Essex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aisaikesi", + "id": 41864, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41865": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Albacore", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daqinghuayu", + "id": 41865, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41866": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from LeTemeraire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lumang", + "id": 41866, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41867": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Memphis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengfeisi", + "id": 41867, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41868": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Newcastle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niukasier", + "id": 41868, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41869": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hobby", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huobi", + "id": 41869, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41870": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kalk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keerke", + "id": 41870, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41871": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minneapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingniabolisi", + "id": 41871, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41872": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hazelwood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heizewude", + "id": 41872, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41873": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Concord", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kangkede", + "id": 41873, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41874": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hatakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qifeng", + "id": 41874, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41875": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Makinami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/juanbo", + "id": 41875, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41876": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sirius", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianlangxing", + "id": 41876, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41877": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curacao", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kulasuo", + "id": 41877, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41878": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curlew", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoyu", + "id": 41878, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41879": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kimberly", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jinboli", + "id": 41879, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41880": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mullany", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malani", + "id": 41880, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41881": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chaser", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhuiganzhe", + "id": 41881, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41882": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Neptune", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haiwangxing", + "id": 41882, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41883": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Monarch", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/junzhu", + "id": 41883, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41884": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ibuki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yichui", + "id": 41884, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41885": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Izumo", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuyun", + "id": 41885, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41886": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Roon", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoen", + "id": 41886, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41887": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Saint-Louis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luyijiushi", + "id": 41887, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41888": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dewey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duwei", + "id": 41888, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41889": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aylwin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aierwen", + "id": 41889, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41890": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bache", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beiqi", + "id": 41890, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41891": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Stanly", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sitanli", + "id": 41891, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41892": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Smalley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/simoli", + "id": 41892, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41893": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Halsey Powell", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haerxibaoweier", + "id": 41893, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41894": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Lena", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna_younv", + "id": 41894, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41895": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from San Juan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shenghuan", + "id": 41895, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41896": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Li'l Sandy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengdiyage_younv", + "id": 41896, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41897": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Birmingham", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bominghan", + "id": 41897, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41898": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Biloxi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biluokexi", + "id": 41898, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41899": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Clevelad", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan_younv", + "id": 41899, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41900": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cleveland μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan_idol", + "id": 41900, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41901": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Baltimore", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/baerdimo", + "id": 41901, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41902": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Alabama", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/alabama", + "id": 41902, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41903": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bunker Hill", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bangkeshan", + "id": 41903, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41904": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Independence", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duli", + "id": 41904, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41905": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bataan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/badan", + "id": 41905, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41906": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shangri-La", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xianggelila", + "id": 41906, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41907": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cavalla", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiqi", + "id": 41907, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41908": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Echo", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huisheng", + "id": 41908, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41909": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hardy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yonggan", + "id": 41909, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41910": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hunter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lieren", + "id": 41910, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41911": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Southampton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nananpudun", + "id": 41911, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41912": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glasgow", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelasige", + "id": 41912, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41913": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gloucester", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/geluosite", + "id": 41913, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41914": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sheffield μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiefeierde_idol", + "id": 41914, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41915": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dido", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daiduo", + "id": 41915, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41916": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Black Prince", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heitaizi", + "id": 41916, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41917": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Swiftsure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/quejie", + "id": 41917, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41918": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from King George V", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiaozhiwushi", + "id": 41918, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41919": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Formidable", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kewei", + "id": 41919, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41921": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Uranami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pubo", + "id": 41921, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41922": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hibiki", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiang", + "id": 41922, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41923": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kasumi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xia", + "id": 41923, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41924": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kiyonami", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qingbo", + "id": 41924, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41925": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kinu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guinu", + "id": 41925, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41926": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Suzuya", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/linggu", + "id": 41926, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41927": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Noshiro", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nengdai", + "id": 41927, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41928": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Baby Huey ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/birui_younv", + "id": 41928, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41929": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Suruga ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/junhe", + "id": 41929, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41930": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ryuuhou", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longfeng", + "id": 41930, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41931": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akagi Pickles ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng_younv", + "id": 41931, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41932": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Akagiμ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng_idol", + "id": 41932, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41933": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-25", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I25", + "id": 41933, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41934": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-56", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I56", + "id": 41934, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41935": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-168", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I168", + "id": 41935, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41936": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-13", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I13", + "id": 41936, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41937": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z2", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z2", + "id": 41937, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41938": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z36", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z36", + "id": 41938, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41939": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Admiral Hipper μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xipeier_idol", + "id": 41939, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41940": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bismarck", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bisimai", + "id": 41940, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41941": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zeppy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qibolin_younv", + "id": 41941, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41942": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-73", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U73", + "id": 41942, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41943": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-101", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U101", + "id": 41943, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41944": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-110", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U110", + "id": 41944, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41945": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-522", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U522", + "id": 41945, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41946": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-556", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U556", + "id": 41946, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41947": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Carabiniere", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longqibing", + "id": 41947, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41948": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Trento", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/teluntuo", + "id": 41948, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41949": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhala", + "id": 41949, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41950": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Littorio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lituoliao", + "id": 41950, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41951": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Conte di Cavour", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiafuerbojue", + "id": 41951, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41952": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Giulio Cesare", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaisa", + "id": 41952, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41953": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from L'Opiniâtre", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/juejiang", + "id": 41953, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41954": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Malin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/edu", + "id": 41954, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41955": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gascogne μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiasikenie_idol", + "id": 41955, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41956": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Seattle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiyatu", + "id": 41956, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41957": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Georgia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zuozhiya", + "id": 41957, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41958": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kitakaze", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beifeng", + "id": 41958, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41959": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Azuma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wuqi", + "id": 41959, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41960": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Friedrich der Grosse", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiteliedadi", + "id": 41960, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "41961": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gascogne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiasikenie", + "id": 41961, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "42000": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for Ibuki, Monarch, Izumo, Roon, Neptune, or Saint Louis.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42000", + "id": 42000, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 1", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42001": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Royal Navy CL Neptune.\nCan be used in the Shipyard to increase Neptune's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42001", + "id": 42001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Neptune", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42002": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Royal Navy BB Monarch.\nCan be used in the Shipyard to increase Monarch's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42002", + "id": 42002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Monarch", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42003": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire CA Ibuki.\nCan be used in the Shipyard to increase Ibuki's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42003", + "id": 42003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Ibuki", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42004": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire BB Izumo.\nCan be used in the Shipyard to increase Izumo's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42004", + "id": 42004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Izumo", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42005": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood CA Roon.\nCan be used in the Shipyard to increase Roon's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42005", + "id": 42005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Roon", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42006": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iris Libre CA Saint Louis.\nCan be used in the Shipyard to increase Saint Louis' stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42006", + "id": 42006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Saint Louis", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42010": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for Seattle, Georgia, Kitakaze, Gascogne, or any of the Series 1 Priority ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42010", + "id": 42010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42011": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Eagle Union CL Seattle.\nCan be used in the Shipyard to increase Seattle's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42011", + "id": 42011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Seattle", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42012": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Eagle Union BB Georgia.\nCan be used in the Shipyard to increase Georgia's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42012", + "id": 42012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Georgia", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42013": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire DD Kitakaze.\nCan be used in the Shipyard to increase Kitakaze's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42013", + "id": 42013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Kitakaze", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42014": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire CB Azuma.\nCan be used in the Shipyard to increase Azuma's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42014", + "id": 42014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Azuma", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42015": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood BB Friedrich der Große.\nCan be used in the Shipyard to increase Friedrich der Große's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42015", + "id": 42015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Friedrich der Große", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42016": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Vichya Dominion BB Gascogne.\nCan be used in the Shipyard to increase Gascogne's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42016", + "id": 42016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Gascogne", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42017": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for Azuma or Friedrich der Große.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "icon": "Props/42017", + "id": 42017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Special General Blueprint - Series 2", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "virtual_type": 0 + }, + "42020": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for Cheshire, Mainz, Odin, Champagne, or any of the Series 1 or 2 Priority ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42020", + "id": 42020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42021": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Royal Navy CA Cheshire.\nCan be used in the Shipyard to increase Cheshire's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42021", + "id": 42021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint – Cheshire", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42022": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Royal Navy CA Drake.\nCan be used in the Shipyard to increase Drake's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42022", + "id": 42022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Drake", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42023": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood CL Mainz.\nCan be used in the Shipyard to increase Mainz's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42023", + "id": 42023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Mainz", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42024": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood BC Odin.\nCan be used in the Shipyard to increase Odin's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42024", + "id": 42024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Odin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42025": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iris Libre BB Champagne.\nCan be used in the Shipyard to increase Champagne's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42025", + "id": 42025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Champagne", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42026": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 2 or 3 DR ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "icon": "Props/42026", + "id": 42026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Special General Blueprint - Series 3", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "virtual_type": 0 + }, + "42030": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 1, 2, 3, or 4 Priority ships. ", + "display_effect": "", + "display_icon": [ + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42030", + "id": 42030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 4", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42031": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Eagle Union CA Anchorage.\nCan be used in the Shipyard to increase Anchorage's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42031", + "id": 42031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Anchorage ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42032": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire CV Hakuryuu.\nCan be used in the Shipyard to increase Hakuryuu's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42032", + "id": 42032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Hakuryuu ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42033": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood CB Ägir.\nCan be used in the Shipyard to increase Ägir's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42033", + "id": 42033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Ägir ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42034": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood CV August von Parseval.\nCan be used in the Shipyard to increase August von Parseval's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42034", + "id": 42034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - August von Parseval ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42035": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sardegna Empire BB Marco Polo.\nCan be used in the Shipyard to increase Marco Polo's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42035", + "id": 42035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Marco Polo ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42036": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 2, 3 or 4 DR ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "icon": "Props/42036", + "id": 42036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Special General Blueprint - Series 4", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "virtual_type": 0 + }, + "42040": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 1, 2, 3, 4, or 5 Priority ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42042, + 1 + ], + [ + 2, + 42043, + 1 + ], + [ + 2, + 42044, + 1 + ], + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42040", + "id": 42040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 5", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42042, + 1 + ], + [ + 2, + 42043, + 1 + ], + [ + 2, + 42044, + 1 + ], + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42041": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Royal Navy CL Plymouth.\nCan be used in the Shipyard to increase Plymouth's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42041", + "id": 42041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Plymouth", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42042": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood BC Prinz Rupprecht.\nCan be used in the Shipyard to increase Prinz Rupprecht's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42042", + "id": 42042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Prinz Rupprecht", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42043": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Dragon Empery CL Harbin.\nCan be used in the Shipyard to increase Harbin's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42043", + "id": 42043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Harbin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42044": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Northern Parliament CV Chkalov.\nCan be used in the Shipyard to increase Chkalov's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42044", + "id": 42044, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Chkalov", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42045": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iris Libre CB Brest.\nCan be used in the Shipyard to increase Brest's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42045", + "id": 42045, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Brest", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42046": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 2, 3, 4, or 5 DR ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42041, + 1 + ], + [ + 2, + 42045, + 1 + ], + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "icon": "Props/42046", + "id": 42046, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Special General Blueprint - Series 5", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42041, + 1 + ], + [ + 2, + 42045, + 1 + ], + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "virtual_type": 0 + }, + "42050": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 1, 2, 3, 4, 5, or 6 Priority ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42052, + 1 + ], + [ + 2, + 42053, + 1 + ], + [ + 2, + 42055, + 1 + ], + [ + 2, + 42042, + 1 + ], + [ + 2, + 42043, + 1 + ], + [ + 2, + 42044, + 1 + ], + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "icon": "Props/42050", + "id": 42050, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "General Blueprint - Series 6", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42052, + 1 + ], + [ + 2, + 42053, + 1 + ], + [ + 2, + 42055, + 1 + ], + [ + 2, + 42042, + 1 + ], + [ + 2, + 42043, + 1 + ], + [ + 2, + 42044, + 1 + ], + [ + 2, + 42031, + 1 + ], + [ + 2, + 42034, + 1 + ], + [ + 2, + 42035, + 1 + ], + [ + 2, + 42021, + 1 + ], + [ + 2, + 42023, + 1 + ], + [ + 2, + 42024, + 1 + ], + [ + 2, + 42025, + 1 + ], + [ + 2, + 42011, + 1 + ], + [ + 2, + 42012, + 1 + ], + [ + 2, + 42013, + 1 + ], + [ + 2, + 42016, + 1 + ], + [ + 2, + 42001, + 1 + ], + [ + 2, + 42002, + 1 + ], + [ + 2, + 42003, + 1 + ], + [ + 2, + 42004, + 1 + ], + [ + 2, + 42005, + 1 + ], + [ + 2, + 42006, + 1 + ] + ], + "virtual_type": 0 + }, + "42051": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Eagle Union BBV Kearsarge.\nCan be used in the Shipyard to increase Kearsarge's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42051", + "id": 42051, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Kearsarge", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42052": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Sakura Empire CL Shimanto.\nCan be used in the Shipyard to increase Shimanto's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42052", + "id": 42052, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Shimanto", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42053": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood DD Felix Schultz.\nCan be used in the Shipyard to increase Felix Schultz's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42053", + "id": 42053, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Felix Schultz", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42054": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Iron Blood CA Hindenburg.\nCan be used in the Shipyard to increase Hindenburg's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42054", + "id": 42054, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Hindenburg", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 20 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42055": { + "combination_display": [], + "compose_number": 0, + "display": "Blueprint for Vichya Dominion BB Flandre.\nCan be used in the Shipyard to increase Flandre's stats once you've finished developing her.", + "display_effect": "", + "display_icon": [], + "icon": "Props/42055", + "id": 42055, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Blueprint - Flandre", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 9, + 5 + ], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 12, + "usage": "usage_blueprint", + "usage_arg": [ + 10 + ], + "virtual_type": 0 + }, + "42056": { + "combination_display": [], + "compose_number": 0, + "display": "Can be converted to a Blueprint for any of the Series 2, 3, 4, 5, or 6 DR ships.", + "display_effect": "", + "display_icon": [ + [ + 2, + 42051, + 1 + ], + [ + 2, + 42054, + 1 + ], + [ + 2, + 42041, + 1 + ], + [ + 2, + 42045, + 1 + ], + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "icon": "Props/42056", + "id": 42056, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Special General Blueprint - Series 6", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 42051, + 1 + ], + [ + 2, + 42054, + 1 + ], + [ + 2, + 42041, + 1 + ], + [ + 2, + 42045, + 1 + ], + [ + 2, + 42032, + 1 + ], + [ + 2, + 42033, + 1 + ], + [ + 2, + 42022, + 1 + ], + [ + 2, + 42014, + 1 + ], + [ + 2, + 42015, + 1 + ] + ], + "virtual_type": 0 + }, + "43001": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Universal Bulin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gin", + "id": 43001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43002": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prototype Bulin MKII", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kin", + "id": 43002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43003": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dewey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duwei", + "id": 43003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43004": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cassin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaxin", + "id": 43004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43005": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Downes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tangsi", + "id": 43005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43006": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gridley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelideli", + "id": 43006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43007": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Craven", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keleiwen", + "id": 43007, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43008": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from McCall", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maikaoer", + "id": 43008, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43009": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maury", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moli", + "id": 43009, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43010": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fletcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fulaiche", + "id": 43010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43011": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Charles Ausburne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aosiben", + "id": 43011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43012": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Thatcher", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/saqieer", + "id": 43012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43013": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aulick", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aolike", + "id": 43013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43014": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foote", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fute", + "id": 43014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43015": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Spence", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipengsi", + "id": 43015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43016": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Benson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bensen", + "id": 43016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43017": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Laffey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lafei", + "id": 43017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43018": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sims", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximusi", + "id": 43018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43019": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hammann", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haman", + "id": 43019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43020": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Eldridge", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aierdeliqi", + "id": 43020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43021": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bailey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beili", + "id": 43021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43022": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Radford", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ladefute", + "id": 43022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43023": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jenkins", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiejinsi", + "id": 43023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43024": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nicholas", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nigulasi", + "id": 43024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43025": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bush", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bushi", + "id": 43025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43026": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hazelwood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heizewude", + "id": 43026, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43027": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bache", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beiqi", + "id": 43027, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43028": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hobby", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huobi", + "id": 43028, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43029": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kalk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keerke", + "id": 43029, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43030": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kimberly", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jinboli", + "id": 43030, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43031": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mullany", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malani", + "id": 43031, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43032": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aylwin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aierwen", + "id": 43032, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43033": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Stanly", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sitanli", + "id": 43033, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43034": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Smalley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/simoli", + "id": 43034, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43035": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Omaha", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aomaha", + "id": 43035, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43036": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Raleigh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoli", + "id": 43036, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43037": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Brooklyn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bulukelin", + "id": 43037, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43038": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Phoenix", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feinikesi", + "id": 43038, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43039": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Helena", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna", + "id": 43039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43040": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Atlanta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yatelanda", + "id": 43040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43041": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juneau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhunuo", + "id": 43041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43042": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from San Diego", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengdiyage", + "id": 43042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43043": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cleveland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan", + "id": 43043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43044": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Columbia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunbiya", + "id": 43044, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43045": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Richmond", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lishiman", + "id": 43045, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43046": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Honolulu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huonululu", + "id": 43046, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43047": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from St. Louis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengluyisi", + "id": 43047, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43048": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Montpelier", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengbiliai", + "id": 43048, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43049": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Denver", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/danfo", + "id": 43049, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43050": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Memphis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mengfeisi", + "id": 43050, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43051": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Concord", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kangkede", + "id": 43051, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43052": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Lena", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna_younv", + "id": 43052, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43053": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Clevelad", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan_younv", + "id": 43053, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43054": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Li'l Sandy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengdiyage_younv", + "id": 43054, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43055": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from San Juan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shenghuan", + "id": 43055, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43056": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Birmingham", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bominghan", + "id": 43056, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43057": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cleveland μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelifulan_idol", + "id": 43057, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43058": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pensacola", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pengsakela", + "id": 43058, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43059": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Salt Lake City", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanhucheng", + "id": 43059, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43060": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Northampton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beianpudun", + "id": 43060, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43061": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chicago", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhijiage", + "id": 43061, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43062": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Houston", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiusidun", + "id": 43062, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43063": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Portland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/botelan", + "id": 43063, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43064": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Indianapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bolisi", + "id": 43064, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43065": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Astoria", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/asituoliya", + "id": 43065, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43066": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Quincy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kunxi", + "id": 43066, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43067": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vincennes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wensensi", + "id": 43067, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43068": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wichita", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiqita", + "id": 43068, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43069": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minneapolis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingniabolisi", + "id": 43069, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43070": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Baltimore", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/baerdimo", + "id": 43070, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43071": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nevada", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/neihuada", + "id": 43071, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43072": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Oklahoma", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ekelahema", + "id": 43072, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43073": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pennsylvania", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/binxifaniya", + "id": 43073, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43074": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arizona", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yalisangna", + "id": 43074, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43075": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tennessee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiannaxi", + "id": 43075, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43076": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from California", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialifuniya", + "id": 43076, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43077": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Colorado", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/keluoladuo", + "id": 43077, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43078": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Maryland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/malilan", + "id": 43078, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43079": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from West Virginia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xifujiniya", + "id": 43079, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43080": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from North Carolina", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beikaluolaina", + "id": 43080, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43081": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Washington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huashengdun", + "id": 43081, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43082": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from South Dakota", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nandaketa", + "id": 43082, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43083": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Massachusetts", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/masazhusai", + "id": 43083, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43084": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Alabama", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/alabama", + "id": 43084, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43085": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Long Island", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changdao", + "id": 43085, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43086": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bogue", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/boge", + "id": 43086, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43087": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Langley", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lanli", + "id": 43087, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43088": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Lexington", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liekexingdun", + "id": 43088, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43089": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Saratoga", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/salatuojia", + "id": 43089, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43090": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ranger", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tujizhe", + "id": 43090, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43091": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yorktown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekecheng", + "id": 43091, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43092": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiye", + "id": 43092, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43093": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hornet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dahuangfeng", + "id": 43093, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43094": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Wasp", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hufeng", + "id": 43094, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43095": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Essex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aisaikesi", + "id": 43095, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43096": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bunker Hill", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bangkeshan", + "id": 43096, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43097": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Independence", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duli", + "id": 43097, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43098": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bataan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/badan", + "id": 43098, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43099": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shangri-La", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xianggelila", + "id": 43099, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43100": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dace", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiaoyu", + "id": 43100, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43101": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Albacore", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daqinghuayu", + "id": 43101, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43102": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cavalla", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiqi", + "id": 43102, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43103": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vestal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zaoshen", + "id": 43103, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43104": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Amazon", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nvjiang", + "id": 43104, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43105": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Acasta", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/akasita", + "id": 43105, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43106": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ardent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rexin", + "id": 43106, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43107": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Beagle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaolietuquan", + "id": 43107, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43108": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bulldog", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dadouquan", + "id": 43108, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43109": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Comet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huixing", + "id": 43109, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43110": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Crescent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue", + "id": 43110, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43111": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cygnet", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaotiane", + "id": 43111, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43112": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Foxhound", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huti", + "id": 43112, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43113": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fortune", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingyunnvshen", + "id": 43113, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43114": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Grenville", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelunweier", + "id": 43114, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43115": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glowworm", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yinghuochong", + "id": 43115, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43116": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hardy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yonggan", + "id": 43116, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43117": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hunter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lieren", + "id": 43117, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43118": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Javelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoqiang", + "id": 43118, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43119": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Juno", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianhou", + "id": 43119, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43120": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vampire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xixuegui", + "id": 43120, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43121": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jupiter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiubite", + "id": 43121, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43122": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jersey", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zexi", + "id": 43122, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43123": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Matchless", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudi", + "id": 43123, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43124": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Musketeer", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huoqiangshou", + "id": 43124, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43125": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Echo", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huisheng", + "id": 43125, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43126": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leander", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liande", + "id": 43126, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43127": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Achilles", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajilisi", + "id": 43127, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43128": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ajax", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ajiakesi", + "id": 43128, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43129": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Southampton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nananpudun", + "id": 43129, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43130": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sheffield", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiefeierde", + "id": 43130, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43131": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Edinburgh", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidingbao", + "id": 43131, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43132": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Belfast", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite", + "id": 43132, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43133": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Arethusa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aruituosha", + "id": 43133, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43134": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Galatea", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialadiya", + "id": 43134, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43135": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Aurora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ouruola", + "id": 43135, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43136": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fiji", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiji", + "id": 43136, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43137": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jamaica", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yamaijia", + "id": 43137, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43138": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Little Bel", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beierfasite_younv", + "id": 43138, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43139": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Newcastle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niukasier", + "id": 43139, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43140": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curacoa", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kulasuo", + "id": 43140, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43141": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Curlew", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biaoyu", + "id": 43141, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43142": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sirius", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tianlangxing", + "id": 43142, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43143": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Swiftsure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/quejie", + "id": 43143, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43144": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Black Prince", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heitaizi", + "id": 43144, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43145": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sheffield μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiefeierde_idol", + "id": 43145, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43146": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glasgow", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gelasige", + "id": 43146, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43147": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from London", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lundun", + "id": 43147, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43148": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Shropshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiluopujun", + "id": 43148, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43149": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Kent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kente", + "id": 43149, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43150": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Suffolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/safuke", + "id": 43150, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43151": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Norfolk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nuofuke", + "id": 43151, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43152": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dorsetshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/duosaitejun", + "id": 43152, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43153": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from York", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yueke", + "id": 43153, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43154": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Exeter", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aikesaite", + "id": 43154, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43155": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sussex", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/susaikesi", + "id": 43155, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43156": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Renown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengwang", + "id": 43156, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43157": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Repulse", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fanji", + "id": 43157, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43158": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hude", + "id": 43158, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43159": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Queen Elizabeth", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yilishabai", + "id": 43159, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43160": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yanzhan", + "id": 43160, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43161": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nelson", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/naerxun", + "id": 43161, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43162": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Rodney", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luodeni", + "id": 43162, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43163": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from King George V", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiaozhiwushi", + "id": 43163, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43164": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prince of Wales", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiershiqinwang", + "id": 43164, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43165": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Duke of York", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yuekegongjue", + "id": 43165, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43166": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hermes", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingjishen", + "id": 43166, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43167": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Unicorn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dujiaoshou", + "id": 43167, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43168": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Centaur", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/banrenma", + "id": 43168, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43169": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chaser", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhuiganzhe", + "id": 43169, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43170": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ark Royal", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangjiafangzhou", + "id": 43170, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43171": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guanghui", + "id": 43171, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43172": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Victorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengli", + "id": 43172, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43173": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Formidable", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kewei", + "id": 43173, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43174": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Glorious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guangrong", + "id": 43174, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43175": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Erebus", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heianjie", + "id": 43175, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43176": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Terror", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kongbu", + "id": 43176, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43177": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Abercrombie", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/abeikelongbi", + "id": 43177, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43178": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:2}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuixue", + "id": 43178, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43179": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:6}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lingbo", + "id": 43179, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43180": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:11}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiao", + "id": 43180, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43181": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:12}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiang", + "id": 43181, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43182": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:13}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lei", + "id": 43182, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43183": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:14}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dian", + "id": 43183, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43184": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:15}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bailu", + "id": 43184, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43185": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:16}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xili", + "id": 43185, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43186": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:17}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shiyu", + "id": 43186, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43187": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:22}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xuefeng", + "id": 43187, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43188": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:19}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yangyan", + "id": 43188, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43189": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:20}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/buzhihuo", + "id": 43189, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43190": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:24}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yefen", + "id": 43190, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43191": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:30}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuchun", + "id": 43191, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43192": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:141}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruoye", + "id": 43192, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43193": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:129}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chushuang", + "id": 43193, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43194": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:31}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/youming", + "id": 43194, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43195": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:32}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ximu", + "id": 43195, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43196": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:21}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/heichao", + "id": 43196, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43197": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:135}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qinchao", + "id": 43197, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43198": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:124}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shenfeng", + "id": 43198, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43199": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:134}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/songfeng", + "id": 43199, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43200": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:33}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/muyue", + "id": 43200, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43201": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:34}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruyue", + "id": 43201, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43202": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:137}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/maoyue", + "id": 43202, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43203": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:133}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shuiwuyue", + "id": 43203, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43204": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:159}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wenyue", + "id": 43204, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43205": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:160}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changyue", + "id": 43205, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43206": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:126}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanriyue", + "id": 43206, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43207": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:158}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiangfeng", + "id": 43207, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43208": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:174}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qingbo", + "id": 43208, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43209": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:125}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinyue_jp", + "id": 43209, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43210": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:157}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chunyue", + "id": 43210, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43211": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:28}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiaoyue", + "id": 43211, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43212": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:142}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pufeng", + "id": 43212, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43213": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:143}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jifeng", + "id": 43213, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43214": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:128}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bangfeng", + "id": 43214, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43215": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:127}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gufeng", + "id": 43215, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43216": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:145}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhaochao", + "id": 43216, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43217": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:146}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dachao", + "id": 43217, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43218": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:147}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/manchao", + "id": 43218, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43219": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:148}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangchao", + "id": 43219, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43220": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:140}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qifeng", + "id": 43220, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43221": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:162}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/juanbo", + "id": 43221, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43222": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:180}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xia", + "id": 43222, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43223": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:37}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xizhang", + "id": 43223, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43224": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:46}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changliang", + "id": 43224, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43225": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:48}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wushiling", + "id": 43225, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43226": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:181}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guinu", + "id": 43226, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43227": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:47}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/awuwei", + "id": 43227, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43228": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:57}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zuishang", + "id": 43228, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43229": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:58}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanwei", + "id": 43229, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43230": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:38}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuannei", + "id": 43230, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43231": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:39}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shentong", + "id": 43231, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43232": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:40}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nake", + "id": 43232, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43233": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:49}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aheye", + "id": 43233, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43234": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:50}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nengdai", + "id": 43234, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43235": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:53}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guying", + "id": 43235, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43236": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:54}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiagu", + "id": 43236, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43237": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:55}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qingye", + "id": 43237, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43238": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:56}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yili", + "id": 43238, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43239": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:63}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/miaogao", + "id": 43239, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43240": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:64}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/nazhi", + "id": 43240, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43241": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:144}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zubing", + "id": 43241, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43242": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:66}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gaoxiong", + "id": 43242, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43243": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:67}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aidang", + "id": 43243, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43244": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:68}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/moye", + "id": 43244, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43245": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:69}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niaohai", + "id": 43245, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43246": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:59}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/linggu", + "id": 43246, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43247": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:70}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jingang", + "id": 43247, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43248": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:71}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/birui", + "id": 43248, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43249": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:72}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhenming", + "id": 43249, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43250": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:73}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wudao", + "id": 43250, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43251": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:161}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tiancheng", + "id": 43251, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43252": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:169}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/birui_younv", + "id": 43252, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43253": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:78}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fusang", + "id": 43253, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43254": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:79}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shancheng", + "id": 43254, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43255": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:76}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yishi", + "id": 43255, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43256": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:77}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rixiang", + "id": 43256, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43257": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:74}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changmen", + "id": 43257, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43258": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:75}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luao", + "id": 43258, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43259": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:92}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahezhanlie", + "id": 43259, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43260": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:82}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sanli", + "id": 43260, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43261": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:175}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/junhe", + "id": 43261, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43262": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:85}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiying", + "id": 43262, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43263": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:86}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sunying", + "id": 43263, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43264": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:89}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fengxiang", + "id": 43264, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43265": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:87}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiangfeng", + "id": 43265, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43266": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:90}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longxiang", + "id": 43266, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43267": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:179}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longfeng", + "id": 43267, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43268": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:91}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng", + "id": 43268, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43269": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:92}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiahe", + "id": 43269, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43270": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:93}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/canglong", + "id": 43270, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43271": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:94}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feilong", + "id": 43271, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43272": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:95}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xianghe", + "id": 43272, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43273": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:96}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ruihe", + "id": 43273, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43274": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:97}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dafeng", + "id": 43274, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43275": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:170}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng_younv", + "id": 43275, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43276": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:176}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng_idol", + "id": 43276, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43277": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:154}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I19", + "id": 43277, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43278": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:155}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I26", + "id": 43278, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43279": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:156}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I58", + "id": 43279, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43280": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-25", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I25", + "id": 43280, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43281": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-56", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I56", + "id": 43281, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43282": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from I-168", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I168", + "id": 43282, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43283": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:98}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingshi", + "id": 43283, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43284": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:163}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/I13", + "id": 43284, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43285": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z1", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z1", + "id": 43285, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43286": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z2", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z2", + "id": 43286, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43287": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z18", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z18", + "id": 43287, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43288": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z19", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z19", + "id": 43288, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43289": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z20", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z20", + "id": 43289, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43290": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z21", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z21", + "id": 43290, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43291": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z23", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/z23", + "id": 43291, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43292": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z25", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z25", + "id": 43292, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43293": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z35", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z35", + "id": 43293, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43294": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z36", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z36", + "id": 43294, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43295": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z46", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z46", + "id": 43295, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43296": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Königsberg", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kenisibao", + "id": 43296, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43297": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Karlsruhe", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaersilue", + "id": 43297, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43298": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Köln", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelong", + "id": 43298, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43299": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Leipzig", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/laibixi", + "id": 43299, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43300": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Admiral Hipper", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xipeierhaijunshangjiang", + "id": 43300, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43301": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prinz Eugen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ougen", + "id": 43301, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43302": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Deutschland", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/deyizhi", + "id": 43302, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43303": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Admiral Graf Spee", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/sipeibojue", + "id": 43303, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43304": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Admiral Hipper μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xipeier_idol", + "id": 43304, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43305": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Scharnhorst", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shaenhuosite", + "id": 43305, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43306": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gneisenau", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/genaisennao", + "id": 43306, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43307": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bismarck", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bisimai", + "id": 43307, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43308": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tirpitz", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tierbici", + "id": 43308, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43309": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Graf Zeppelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qibolin", + "id": 43309, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43310": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zeppy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qibolin_younv", + "id": 43310, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43311": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-81", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U81", + "id": 43311, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43312": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-47", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U47", + "id": 43312, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43313": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-557", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U557", + "id": 43313, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43314": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-556", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U556", + "id": 43314, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43315": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-73", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U73", + "id": 43315, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43316": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-101", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U101", + "id": 43316, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43317": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-522", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U522", + "id": 43317, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43318": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-110", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U110", + "id": 43318, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43319": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from An Shan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/anshan", + "id": 43319, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43320": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Fu Shun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fushun", + "id": 43320, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43321": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chang Chun", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changchun", + "id": 43321, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43322": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tai Yuan", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/taiyuan", + "id": 43322, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43323": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Yat Sen", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yixian", + "id": 43323, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43324": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ning Hai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ninghai", + "id": 43324, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43325": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ping Hai", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pinghai", + "id": 43325, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43326": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Carabiniere", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/longqibing", + "id": 43326, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43327": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Trento", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/teluntuo", + "id": 43327, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43328": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Zara", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhala", + "id": 43328, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43329": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Littorio", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lituoliao", + "id": 43329, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43330": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Conte di Cavour", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiafuerbojue", + "id": 43330, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43331": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Giulio Cesare", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaisa", + "id": 43331, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43332": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Avrora", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/afuleer", + "id": 43332, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43333": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Triomphant", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kaixuan", + "id": 43333, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43334": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Forbin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/fuerban", + "id": 43334, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43335": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Téméraire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lumang", + "id": 43335, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43336": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from L'Opiniâtre", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/juejiang", + "id": 43336, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43337": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Émile Bertin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aimierbeierding", + "id": 43337, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43338": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Surcouf", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xukufu", + "id": 43338, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43339": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Mars", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lemaer", + "id": 43339, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43340": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Malin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/edu", + "id": 43340, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43341": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dunkerque", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dunkeerke", + "id": 43341, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43342": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jean Bart", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/rangbaer", + "id": 43342, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43343": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gascogne μ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiasikenie_idol", + "id": 43343, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43344": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Neptune", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haiwangxing", + "id": 43344, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43345": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Monarch", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/junzhu", + "id": 43345, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43346": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:152}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yichui", + "id": 43346, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43347": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:151}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chuyun", + "id": 43347, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43348": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Roon", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoen", + "id": 43348, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43349": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Saint Louis", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luyijiushi", + "id": 43349, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43350": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Seattle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiyatu", + "id": 43350, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43351": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Georgia", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zuozhiya", + "id": 43351, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43352": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:164}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beifeng", + "id": 43352, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43353": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:165}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wuqi", + "id": 43353, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43354": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Friedrich der Grosse", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feiteliedadi", + "id": 43354, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43355": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gascogne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiasikenie", + "id": 43355, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43356": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Halsey Powell", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haerxibaoweier", + "id": 43356, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43357": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Biloxi", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/biluokexi", + "id": 43357, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43358": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gloucester", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/geluosite", + "id": 43358, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43359": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dido", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daiduo", + "id": 43359, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43360": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:184}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pubo", + "id": 43360, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43361": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Specialized Bulin Custom MKIII ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/buli_super", + "id": 43361, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43362": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cooper", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kubo", + "id": 43362, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43363": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Marblehead", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mabuerheide", + "id": 43363, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43364": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Reno", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/linuo", + "id": 43364, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43365": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Baltimore μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/baerdimo_idol", + "id": 43365, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43366": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bremerton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bulaimodun", + "id": 43366, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43367": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Intrepid", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wuwei", + "id": 43367, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43368": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Casablanca", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kasabulanka", + "id": 43368, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43369": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Princeton", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/pulinsidun", + "id": 43369, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43370": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Albacore μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daqinghuayu_idol", + "id": 43370, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43371": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Bluegill", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lansaiyu", + "id": 43371, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43372": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Eskimo ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aisijimo", + "id": 43372, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43373": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Icarus", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yikaluosi", + "id": 43373, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43374": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Dido μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/daiduo_idol", + "id": 43374, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43375": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hermione", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hemin", + "id": 43375, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43376": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Little Renown", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengwang_younv", + "id": 43376, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43377": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Valiant", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yingyong", + "id": 43377, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43378": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Howe", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hao", + "id": 43378, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43379": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Perseus", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yingxianzuo", + "id": 43379, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43380": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Illustrious μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guanghui_idol", + "id": 43380, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43381": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Little Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/guanghui_younv", + "id": 43381, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43382": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Eagle", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/ying", + "id": 43382, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43383": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:185}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/changbo", + "id": 43383, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43384": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:29}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huayue", + "id": 43384, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43385": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:27}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/liangyue", + "id": 43385, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43386": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:60}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiongye", + "id": 43386, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43387": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:80}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jiyi", + "id": 43387, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43388": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:81}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tuzuo", + "id": 43388, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43389": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:103}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiansui", + "id": 43389, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43390": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:104}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiandaitian", + "id": 43390, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43391": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:182}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xinnong", + "id": 43391, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43392": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:188}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jianye", + "id": 43392, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43393": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z26", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z26", + "id": 43393, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43394": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-96", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U96", + "id": 43394, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43395": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from {namecode:190}", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/dafeng_idol", + "id": 43395, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43396": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Richelieu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lisailiu", + "id": 43396, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43397": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from La Galissonnière", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/jialisuoniye", + "id": 43397, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43398": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vauquelin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wokelan", + "id": 43398, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43399": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tartu", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/taertu", + "id": 43399, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43400": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Béarn", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/beiyaen", + "id": 43400, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43401": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Roon μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/luoen_idol", + "id": 43401, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43402": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Cheshire", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chaijun", + "id": 43402, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43403": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Odin", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aoding", + "id": 43403, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43404": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Mainz", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/meiyinci", + "id": 43404, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43405": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Drake", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/deleike", + "id": 43405, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43406": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Champagne", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/xiangbin", + "id": 43406, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43407": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Jeanne d'Arc", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shengnvzhende", + "id": 43407, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43408": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Le Malin μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/edu_idol", + "id": 43408, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43409": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Algérie", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/aerjiliya", + "id": 43409, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43410": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Gangut", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/gangute", + "id": 43410, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43411": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Grozny", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weiyan", + "id": 43411, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43412": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tashkent", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tashigan", + "id": 43412, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43413": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Tashkent μ ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tashigan_idol", + "id": 43413, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43414": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chapayev", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiabayefu", + "id": 43414, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43415": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pamiat' Merkuria", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shuixingjinian", + "id": 43415, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43416": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Minsk", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingsike", + "id": 43416, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43417": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Sovetskaya Rossiya", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/suweiailuoxiya", + "id": 43417, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43418": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Peter Strasser ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/shitelasai", + "id": 43418, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43419": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Weser", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weixi", + "id": 43419, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43420": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Prinz Heinrich ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/haiyinlixi", + "id": 43420, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43421": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z24", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z24", + "id": 43421, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43422": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Z28", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/Z28", + "id": 43422, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43423": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-37", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U37", + "id": 43423, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43424": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Pola ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bola", + "id": 43424, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43425": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Vincenzo Gioberti", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/wenqinzuojiaobeidi", + "id": 43425, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43426": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Chao Ho", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/zhaohe", + "id": 43426, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43427": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Ying Swei", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yingrui", + "id": 43427, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43428": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Penelope", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/peineiluopo", + "id": 43428, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43429": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from U-410", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/U410", + "id": 43429, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43430": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Hiryuu META", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/feilong_alter", + "id": 43430, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "43431": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from Nürnberg ", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/niulunbao", + "id": 43431, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "44001": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from $1", + "display_effect": "", + "display_icon": [], + "icon": "Props/manhanquanxi ", + "id": 44001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 23, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "44002": { + "combination_display": [], + "compose_number": 0, + "display": "A Valentine Gift from $1", + "display_effect": "", + "display_icon": [], + "icon": "Props/manhanquanxi ", + "id": 44002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Valentine Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 8, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 23, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "50001": { + "combination_display": [], + "compose_number": 0, + "display": "Oxy-cola has a unique and acquired taste. Perhaps not the most suitable drink for a Commander.", + "display_effect": "", + "display_icon": [], + "icon": "Props/suansukele", + "id": 50001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Oxy-cola", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 1000 + ], + "virtual_type": 0 + }, + "50002": { + "combination_display": [], + "compose_number": 0, + "display": "What's so secret about this? It doesn't look different than any other drink.", + "display_effect": "", + "display_icon": [], + "icon": "Props/mizhilengqueshui", + "id": 50002, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Secret Coolant", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 2000 + ], + "virtual_type": 0 + }, + "50003": { + "combination_display": [], + "compose_number": 0, + "display": "Simply mouthwateringly delicious!", + "display_effect": "", + "display_icon": [], + "icon": "Props/yuleitianfuluo", + "id": 50003, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Torpedo Tempura", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 3000 + ], + "virtual_type": 0 + }, + "50004": { + "combination_display": [], + "compose_number": 0, + "display": "Sweet Curry or Hot Curry that is the question(Increase EXP by 5% for 60 minutes)", + "display_effect": "", + "display_icon": [], + "icon": "Props/haijungali", + "id": 50004, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Naval Curry", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 5000, + 1, + 3600 + ], + "virtual_type": 0 + }, + "50005": { + "combination_display": [], + "compose_number": 0, + "display": "An exclusive meal for the Royal Navy! (Increase EXP by 10% for 180 minutes)", + "display_effect": "", + "display_icon": [], + "icon": "Props/huangjialiaoli", + "id": 50005, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Royal Gourmet", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 10000, + 2, + 10800 + ], + "virtual_type": 0 + }, + "50006": { + "combination_display": [], + "compose_number": 0, + "display": "A full course meal crafted with love and care! (Increase EXP by 20% for 360 minutes)", + "display_effect": "", + "display_icon": [], + "icon": "Props/manhanquanxi", + "id": 50006, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Full Course", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 3, + "usage": "usage_food", + "usage_arg": [ + 20000, + 3, + 21600 + ], + "virtual_type": 0 + }, + "59010": { + "combination_display": [], + "compose_number": 0, + "display": "Obtained by clearing maps, completing special missions, completing research projects, or retiring non-retrofit UR ships. Can be used in the Prototype Shop. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/specialarmor_prt", + "id": 59010, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Specialized Core ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59488": { + "combination_display": [], + "compose_number": 0, + "display": "A special item in \"The Spiriting-Away Incident?\" minigame. When purchased, unlocks Shinano as a playable character.", + "display_effect": "", + "display_icon": [], + "icon": "Props/xinwu_xinnong", + "id": 59488, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shinano's Token", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59489": { + "combination_display": [], + "compose_number": 0, + "display": "A special item in \"The Spiriting-Away Incident?\" minigame. When purchased, unlocks Yura as a playable character.", + "display_effect": "", + "display_icon": [], + "icon": "Props/xinwu_youliang", + "id": 59489, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Yura's Token", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59490": { + "combination_display": [], + "compose_number": 0, + "display": "A special item in \"The Spiriting-Away Incident?\" minigame. When purchased, unlocks Shimakaze as a playable character.", + "display_effect": "", + "display_icon": [], + "icon": "Props/xinwu_daofeng", + "id": 59490, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shimakaze's Token", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59503": { + "combination_display": [], + "compose_number": 0, + "display": "Use from your Depot to receive 1 skin of your choosing. \n(You may only choose from the offered lineup. If you already own every skin, you will instead receive an Outfit Coupon.)", + "display_effect": "", + "display_icon": [], + "icon": "Props/skin_exchange_n", + "id": 59503, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Campaign Outfit Voucher", + "open_directly": 0, + "order": 99, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 26, + "usage": "usage_drop_appointed_skinexchange", + "usage_arg": [ + 5082, + [ + 105171, + 702034, + 207121, + 499061, + 305101, + 506012, + 407032, + 402081, + 207036, + 236030, + 202331, + 206071, + 305054, + 907011, + 402082, + 403094, + 205092, + 601101, + 205141, + 699011, + 701101, + 608021, + 403111, + 607011, + 705041, + 331056, + 299012, + 702061, + 499032, + 607021, + 903022, + 205093, + 399014, + 703011, + 601091, + 702032, + 202091, + 705061, + 206021, + 201341, + 431232, + 602011, + 607012, + 302215, + 105131, + 605024, + 901131, + 103141, + 103121, + 303141, + 405012, + 405024, + 303183, + 107141, + 702012, + 701042, + 205111, + 406031, + 802031, + 105112, + 403021, + 131171, + 399051, + 705012, + 404051, + 107094, + 401991, + 701091, + 603051, + 605071, + 803011, + 705071, + 707011, + 102293, + 605062, + 603041, + 107073, + 701071, + 101461, + 703012, + 201121, + 603052, + 303102, + 903011, + 108061, + 601041, + 331055, + 405041, + 107171, + 101265, + 403093, + 201217, + 101471, + 402062, + 102071, + 302132, + 602021, + 102254, + 102292, + 107142, + 201023, + 404032, + 601051, + 404031, + 601071, + 702022, + 201032, + 702041, + 101481, + 207024, + 302111, + 202092, + 302232, + 103082, + 202311, + 408024, + 805021, + 103142, + 408012, + 201361, + 406013, + 301661, + 401022, + 204034, + 601081, + 301472, + 202084, + 305142, + 608011, + 302082, + 401161, + 304013, + 301644, + 401242 + ], + [ + 213011, + 502021, + 306051, + 102091, + 301051, + 301121, + 107061, + 307022, + 101172, + 312011, + 206032, + 101311, + 101262, + 202111, + 307032, + 307041, + 301011, + 401011, + 301161, + 301621, + 403051, + 301131, + 301261, + 301351, + 207061, + 201021, + 301631, + 304031, + 301491, + 301381, + 299021, + 103081, + 103101, + 205011, + 202031, + 312012, + 201011, + 408011, + 202191, + 301091, + 101361, + 101371, + 302051, + 102181, + 403052, + 101312, + 205021, + 301591, + 205062, + 102051, + 102141, + 301211, + 103102, + 202081, + 107062, + 301054, + 103061, + 304011, + 207033, + 305061, + 101174, + 201213, + 301055, + 401233, + 401234, + 102052, + 107051, + 403053, + 201261, + 202161, + 202231, + 206052, + 901111, + 904012, + 901012, + 801022, + 103161, + 101401, + 102231, + 107291, + 102093, + 107063, + 403043, + 202112, + 213041, + 301057, + 101176, + 401236, + 301541, + 101022, + 305052, + 301101, + 206034, + 401351, + 304043, + 331050, + 202071, + 102094, + 301811, + 207023, + 201022, + 301391, + 102101, + 201031, + 301801, + 101252, + 201321, + 401261, + 408082, + 205022, + 205012, + 201234, + 408083, + 101253, + 101442, + 101254, + 107035, + 499041, + 202126, + 199023, + 408084, + 107232, + 101314, + 701061, + 107223, + 302214, + 305113, + 605023, + 305053, + 801032, + 103164, + 207052, + 202273, + 102142, + 204033, + 202243, + 205102, + 301832, + 301861, + 301021, + 301812, + 301592, + 306062, + 102163, + 101041, + 101031, + 801071, + 801081, + 303182, + 107224 + ], + 99999, + 59551 + ], + "virtual_type": 0 + }, + "59504": { + "combination_display": [], + "compose_number": 0, + "display": "Use from your Depot to choose between any one of the following: 1x Promise Ring, 15x Special General Blueprints - Series 6, or 20x Wisdom Cubes.", + "display_effect": "", + "display_icon": [ + [ + 2, + 15006, + 1 + ], + [ + 2, + 42056, + 15 + ], + [ + 2, + 20001, + 20 + ] + ], + "icon": "Props/59504", + "id": 59504, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Item Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 15006, + 1 + ], + [ + 2, + 42056, + 15 + ], + [ + 2, + 20001, + 20 + ] + ], + "virtual_type": 0 + }, + "59505": { + "combination_display": [], + "compose_number": 0, + "display": "Use from your Depot to choose between any one of the following: 1x Campaign Outfit Voucher, 25x Prototype Blueprints - Series 1, 25x Prototype Blueprints - Series 2, 25x Prototype Blueprints - Series 3, 25x Prototype Blueprints - Series 4, 25x Prototype Blueprints - Series 5, or 30x Wisdom Cubes.", + "display_effect": "", + "display_icon": [ + [ + 2, + 59503, + 1 + ], + [ + 2, + 14001, + 25 + ], + [ + 2, + 14002, + 25 + ], + [ + 2, + 14003, + 25 + ], + [ + 2, + 14004, + 25 + ], + [ + 2, + 14005, + 25 + ], + [ + 2, + 20001, + 30 + ] + ], + "icon": "Props/59505", + "id": 59505, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Selection Item Box II", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 13, + "usage": "usage_drop_appointed", + "usage_arg": [ + [ + 2, + 59503, + 1 + ], + [ + 2, + 14001, + 25 + ], + [ + 2, + 14002, + 25 + ], + [ + 2, + 14003, + 25 + ], + [ + 2, + 14004, + 25 + ], + [ + 2, + 14005, + 25 + ], + [ + 2, + 20001, + 30 + ] + ], + "virtual_type": 0 + }, + "59551": { + "combination_display": [], + "compose_number": 0, + "display": "Gives a 780 Gem discount when purchasing a skin. Removed after use.", + "display_effect": "", + "display_icon": [], + "icon": "Props/skin_780", + "id": 59551, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Outfit Coupon (780)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_skin_discount", + "usage_arg": [ + [ + 0 + ], + 780 + ], + "virtual_type": 0 + }, + "59711": { + "combination_display": [], + "compose_number": 0, + "display": "A commemorative item earned by completing \"New Dawn.\" Can be used to receive a 1-year Anniversary Portrait Frame and Chat Bubble Background. ", + "display_effect": "", + "display_icon": [], + "icon": "props/yizhounian", + "id": 59711, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Dawn ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "90913", + "virtual_type": 0 + }, + "59720": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive an SR ship of your choosing as well as a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59720, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "1st Anniversary Invitation ", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_first" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109 + ], + "virtual_type": 0 + }, + "59721": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from San Diego. It reads: \"Heeeey~! Happy 1-year anniversary~!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59721, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "San Diego's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59722": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast. It reads: \"I wish you a joyous and fortuitous 1-year anniversary, Master.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59722, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59723": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Takao. It reads:\n\"One year it has been\nit's an anniversary\nlet us celebrate.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59723, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Takao's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59724": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite. It reads: \"Happy 1-year anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59724, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59725": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood. It reads: \"I hope you have a most pleasant 1-year anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59725, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59726": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise. It reads: \"Been a whole year, huh? Happy anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59726, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59727": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious. It reads: \"Happy 1-year anniversary, my dear Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59727, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59728": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales. It reads: \"The year certainly passed quickly. Heheh. Happy anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59728, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prince of Wales's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59729": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. It reads: \"My, my, a year already? Happy anniversary, Commander~\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59729, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59739": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from San Diego. It reads: \"Heeeey~! Happy 1-year anniversary~!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59739, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "San Diego's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8872", + "virtual_type": 0 + }, + "59740": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast. It reads: \"I wish you a joyous and fortuitous 1-year anniversary, Master.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59740, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8873", + "virtual_type": 0 + }, + "59741": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Takao. It reads:\n\"One year it has been\nit's an anniversary\nlet us celebrate.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59741, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Takao's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8874", + "virtual_type": 0 + }, + "59742": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite. It reads: \"Happy 1-year anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59742, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8875", + "virtual_type": 0 + }, + "59743": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood. It reads: \"I hope you have a most pleasant 1-year anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59743, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8876", + "virtual_type": 0 + }, + "59744": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise. It reads: \"Been a whole year, huh? Happy anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59744, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8877", + "virtual_type": 0 + }, + "59745": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious. It reads: \"Happy 1-year anniversary, my dear Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59745, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8878", + "virtual_type": 0 + }, + "59746": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales. It reads: \"The year certainly passed quickly. Heheh. Happy anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59746, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prince of Wales's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8879", + "virtual_type": 0 + }, + "59747": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. It reads: \"My, my, a year already? Happy anniversary, Commander~\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59747, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "8880", + "virtual_type": 0 + }, + "59749": { + "combination_display": [], + "compose_number": 0, + "display": "An item required to retrofit San Diego – \"I'm number one!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shanyaomaikefeng", + "id": 59749, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "Sparkling Mic", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 59773, + "shiptrans_id": [ + 102174 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59750": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive a selected ship and a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59750, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Gift ", + "open_directly": 0, + "open_ui": [ + "login_santa", + "t_santa" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 201, + 202, + 203, + 204, + 205 + ], + "virtual_type": 0 + }, + "59751": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Cleveland: \"Merry Christmas! It'd be sweet if you could give something to my sisters too!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59751, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Cleveland ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59752": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Ning Hai: \"Merry Christmas. Look, it's not much, but it's the thought that counts. We can't afford anything pricey.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59752, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Ning Hai ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59753": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Ping Hai: \"Merry Christmas. My sister said a thank-you gift has to be be worth more than what the giver spent on your own.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59753, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Ping Hai ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59754": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Fubuki: \"Merry X-Mas! Next time, give a shout to Ayanami and Akatsuki too, okay? Thanks!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59754, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Fubuki ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59755": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Edinburgh: \"Merry Christmas! You don't mind receiving a gift of equal value, right...?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/shengye", + "id": 59755, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Edinburgh ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59756": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Cleveland: \"Merry Christmas! It'd be sweet if you could give something to my sisters too!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59756, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Cleveland ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "90370", + "virtual_type": 0 + }, + "59757": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Ning Hai: \"Merry Christmas. Look, it's not much, but it's the thought that counts. We can't afford anything pricey.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59757, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Ning Hai ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "90371", + "virtual_type": 0 + }, + "59758": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Ping Hai: \"Merry Christmas. My sister said a thank-you gift has to be be worth more than what the giver spent on your own.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59758, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Ping Hai ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "90372", + "virtual_type": 0 + }, + "59759": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Fubuki: \"Merry X-Mas! Next time, give a shout to Ayanami and Akatsuki too, okay? Thanks!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59759, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Fubuki ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "90373", + "virtual_type": 0 + }, + "59760": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Edinburgh: \"Merry Christmas! You don't mind receiving a gift of equal value, right...?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59760, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Edinburgh ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "90374", + "virtual_type": 0 + }, + "59762": { + "combination_display": [], + "compose_number": 0, + "display": "An item required to retrofit Warspite – \"Belli dura despicio!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yanzhandabaojian", + "id": 59762, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "The Warrior's Prowess", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 59939, + "shiptrans_id": [ + 205124 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59773": { + "combination_display": [], + "compose_number": 0, + "display": "Here is your trophy. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/linkstar", + "id": 59773, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "San Diego Memorial star", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59774": { + "combination_display": [], + "compose_number": 0, + "display": "A commemorative item earned by completing \"New Dawn.\" Can be used to receive a 1-year Anniversary Portrait Frame and Chat Bubble Background. ", + "display_effect": "", + "display_icon": [], + "icon": "props/yizhounian", + "id": 59774, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Dawn ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59798": { + "combination_display": [], + "compose_number": 0, + "display": "A commemorative item earned by completing the 2nd anniversary event \"Juju Wrangler\"", + "display_effect": "", + "display_icon": [], + "icon": "props/erzhounian", + "id": 59798, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniv Commemorative Coin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59799": { + "combination_display": [], + "compose_number": 0, + "display": "A commemorative item earned by completing the 3rd anniversary event \"Juju Wrangler\". The adventure continues!", + "display_effect": "", + "display_icon": [], + "icon": "props/sanzhounian", + "id": 59799, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "3rd Anniv Commemorative Coin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59840": { + "combination_display": [], + "compose_number": 0, + "display": "A coin to commemorate Azur Lane's 4th Anniversary. Keep sailing and you will always find new horizons.", + "display_effect": "", + "display_icon": [], + "icon": "props/sizhounian", + "id": 59840, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "4th Anniversary Coin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59843": { + "combination_display": [], + "compose_number": 0, + "display": "An item required to retrofit Yuudachi – \"Makes me hungry every time I smell it!\" \"Whaddya mean that isn't the point?!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/barbecueperfume", + "id": 59843, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "Eau de Barbecue", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 59848, + "shiptrans_id": [ + 301874 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59844": { + "combination_display": [], + "compose_number": 0, + "display": "A Dragon Empery amulet with the divine beast seal of the Azure Dragon inscribed onto it. Retrofit material for An Shan.", + "display_effect": "", + "display_icon": [], + "icon": "Props/symbolqinglong", + "id": 59844, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "Seal of the Azure Dragon", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [ + 520014, + 521014 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59845": { + "combination_display": [], + "compose_number": 0, + "display": "A Dragon Empery amulet with the divine beast seal of the White Tiger inscribed onto it. Retrofit material for Chang Chun.", + "display_effect": "", + "display_icon": [], + "icon": "Props/symbolbaihu", + "id": 59845, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "Seal of the White Tiger", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [ + 520034, + 521034 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59846": { + "combination_display": [], + "compose_number": 0, + "display": "A coin to commemorate Azur Lane's 5th Anniversary. Keep sailing and you will always find new horizons.", + "display_effect": "", + "display_icon": [], + "icon": "props/wuzhounian", + "id": 59846, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "5th Anniversary Coin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59848": { + "combination_display": [], + "compose_number": 0, + "display": "The tastiest trophy you've ever seen. Awarded to Commanders who won the Port Eating Contest event.", + "display_effect": "", + "display_icon": [], + "icon": "Props/barbecue_badge", + "id": 59848, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Port Eating Contest 1st Place Prize", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59851": { + "combination_display": [], + "compose_number": 0, + "display": "A Dragon Empery amulet with the divine beast seal of the Black Tortoise inscribed onto it. Retrofit material for Tai Yuan.", + "display_effect": "", + "display_icon": [], + "icon": "Props/symbolxuanwu", + "id": 59851, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 1, + "name": "Seal of the Black Tortoise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [ + 520044, + 521044 + ], + "target_id": 0, + "time_limit": 0, + "type": 7, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59900": { + "combination_display": [], + "compose_number": 0, + "display": "May be exchanged during a wide variety of events", + "display_effect": "", + "display_icon": [], + "icon": "Props/shuju", + "id": 59900, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Core Data", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 98, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59901": { + "combination_display": [], + "compose_number": 0, + "display": "The guild is once again asking for your financial support! Upon use, restores the number of contribution attempts by 1. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/59901", + "id": 59901, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Guild Contribution Directives ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 20, + "usage": "usage_guild_donate", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59902": { + "combination_display": [], + "compose_number": 0, + "display": "An emergency reinforcements request issued by the Guild. When used, restores the number of Guild Operation participation attempts by 1. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/59902", + "id": 59902, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Guild Operation Orders ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 20, + "usage": "usage_guild_operation", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59906": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive an SR ship of your choosing as well as a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59906, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2st Anniversary Invitation ", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_second" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309 + ], + "virtual_type": 0 + }, + "59907": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Washington", + "display_effect": "", + "display_icon": [ + [ + 4, + 105131, + 1 + ], + [ + 2, + 59916, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59907, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Washington's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91680", + "virtual_type": 0 + }, + "59908": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast", + "display_effect": "", + "display_icon": [ + [ + 4, + 202121, + 1 + ], + [ + 2, + 59917, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59908, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91681", + "virtual_type": 0 + }, + "59909": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago", + "display_effect": "", + "display_icon": [ + [ + 4, + 303111, + 1 + ], + [ + 2, + 59918, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59909, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91682", + "virtual_type": 0 + }, + "59910": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 59919, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59910, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91683", + "virtual_type": 0 + }, + "59911": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 59920, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59911, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91684", + "virtual_type": 0 + }, + "59912": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 59921, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59912, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91685", + "virtual_type": 0 + }, + "59913": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious", + "display_effect": "", + "display_icon": [ + [ + 4, + 207031, + 1 + ], + [ + 2, + 59922, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59913, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91686", + "virtual_type": 0 + }, + "59914": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales", + "display_effect": "", + "display_icon": [ + [ + 4, + 205061, + 1 + ], + [ + 2, + 59923, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59914, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prince of Wales's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91687", + "virtual_type": 0 + }, + "59915": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from North Carolina", + "display_effect": "", + "display_icon": [ + [ + 4, + 105121, + 1 + ], + [ + 2, + 59924, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 59915, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "North Carolina's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "91688", + "virtual_type": 0 + }, + "59916": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Washington", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59916, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Washington", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59917": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Belfast", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59917, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Belfast", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59918": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Atago", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59918, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Atago", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59919": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59919, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Warspite", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59920": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59920, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Hood", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59921": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59921, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Enterprise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59922": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59922, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Illustrious", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59923": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Prince of Wales", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59923, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Prince of Wales", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59924": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from North Carolina", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59924, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from North Carolina", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59939": { + "combination_display": [], + "compose_number": 0, + "display": "Here is your trophy. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yanzhandabaojian", + "id": 59939, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "The Old Lady's Keepsake", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59940": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the New Year. Can be used to receive an SR ship of your choosing as well as a commemorative item.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59940, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Tidings", + "open_directly": 0, + "open_ui": [ + "shrine_year", + "t_shrine" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 401, + 402, + 403, + 404, + 405, + 406, + 407 + ], + "virtual_type": 0 + }, + "59941": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59941, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92337", + "virtual_type": 0 + }, + "59942": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59942, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92338", + "virtual_type": 0 + }, + "59943": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59943, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92339", + "virtual_type": 0 + }, + "59944": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59944, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92340", + "virtual_type": 0 + }, + "59945": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59945, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zuikaku's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92341", + "virtual_type": 0 + }, + "59946": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59946, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92342", + "virtual_type": 0 + }, + "59947": { + "combination_display": [], + "compose_number": 0, + "display": "Receive the ship and her wishes.", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 59947, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Gift", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "92343", + "virtual_type": 0 + }, + "59948": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Warspite.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59948, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59949": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Atago.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59949, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59950": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Illustrious.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59950, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59951": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Shoukaku.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59951, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59952": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Zuikaku.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59952, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zuikaku's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59953": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Montpelier.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59953, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59954": { + "combination_display": [], + "compose_number": 0, + "display": "New Year's wishes from Hood.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang", + "id": 59954, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "59955": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to invite a special partner to join you from a selection of ships. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 59955, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Early Summer Invitation (2020) ", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_third" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 501, + 502, + 503, + 504, + 505, + 506, + 507, + 508, + 509 + ], + "virtual_type": 0 + }, + "60011": { + "combination_display": [], + "compose_number": 0, + "display": "Earn 1 EXP in 10 seconds", + "display_effect": "", + "display_icon": [], + "icon": "Props/54003", + "id": 60011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Super Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 10, + 1, + 1, + 50 + ], + "virtual_type": 0 + }, + "60012": { + "combination_display": [], + "compose_number": 0, + "display": "Earn 10000 EXP in 10 seconds", + "display_effect": "", + "display_icon": [], + "icon": "Props/54003", + "id": 60012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Super Skill Book", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 10, + "usage": "usage_book", + "usage_arg": [ + 10, + 10000, + 1, + 50 + ], + "virtual_type": 0 + }, + "60039": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Zuikaku. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60039, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Zuikaku", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93185", + "virtual_type": 0 + }, + "60040": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60040, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Belfast", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93178", + "virtual_type": 0 + }, + "60041": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Shoukaku. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60041, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Shoukaku", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93183", + "virtual_type": 0 + }, + "60042": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60042, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Warspite", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93181", + "virtual_type": 0 + }, + "60043": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60043, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Hood", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93182", + "virtual_type": 0 + }, + "60044": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60044, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Enterprise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93179", + "virtual_type": 0 + }, + "60045": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60045, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Illustrious", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93177", + "virtual_type": 0 + }, + "60046": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60046, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Prince of Wales", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93184", + "virtual_type": 0 + }, + "60047": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/30000", + "id": 60047, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Atago", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93180", + "virtual_type": 0 + }, + "60048": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Zuikaku. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60048, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Zuikaku", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60049": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60049, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Belfast", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60050": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Shoukaku. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60050, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Shoukaku", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60051": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60051, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Warspite", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60052": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60052, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Hood", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60053": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60053, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Enterprise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60054": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60054, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Illustrious", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60055": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60055, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Prince of Wales", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60056": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60056, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Atago", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60059": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive an SR ship of your choosing as well as a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60059, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation ", + "open_directly": 0, + "open_ui": [ + "login_year" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609 + ], + "virtual_type": 0 + }, + "60060": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Belfast and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 202121, + 1 + ], + [ + 2, + 60069, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60060, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Belfast)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93541", + "virtual_type": 0 + }, + "60061": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Warspite and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 60070, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60061, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Warspite)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93542", + "virtual_type": 0 + }, + "60062": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Hood and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 60071, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60062, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Hood)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93543", + "virtual_type": 0 + }, + "60063": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Enterprise and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 60072, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60063, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Enterprise)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93544", + "virtual_type": 0 + }, + "60064": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Illustrious and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 207031, + 1 + ], + [ + 2, + 60073, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60064, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Illustrious)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93545", + "virtual_type": 0 + }, + "60065": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Prince of Wales and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 205061, + 1 + ], + [ + 2, + 60074, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60065, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Prince of Wales)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93546", + "virtual_type": 0 + }, + "60066": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Atago and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 303121, + 1 + ], + [ + 2, + 60075, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60066, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Atago)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93547", + "virtual_type": 0 + }, + "60067": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship Washington and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 105131, + 1 + ], + [ + 2, + 60076, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60067, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (Washington)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93548", + "virtual_type": 0 + }, + "60068": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to obtain the SR ship North Carolina and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 105121, + 1 + ], + [ + 2, + 60077, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60068, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "2nd Anniversary Invitation (North Carolina)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93549", + "virtual_type": 0 + }, + "60069": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Belfast. It reads: \"I wish you a joyous and fortuitous second anniversary, Master.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60069, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60070": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite. It reads: \"Happy second anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60070, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60071": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood. It reads: \"I hope you have a most pleasant second anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60071, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60072": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise. It reads: \"Been a whole year, huh? Happy second anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60072, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60073": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Illustrious. It reads: \"Happy second anniversary, my dear Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60073, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60074": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales. It reads: \"The year certainly passed quickly. Heheh. Happy second anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60074, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prince of Wales's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60075": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. It reads: \"My, my, a year already? Happy second anniversary, Commander~\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60075, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60076": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Washington. It reads: \"Happy second anniversary.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60076, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Washington's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60077": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from North Carolina. It reads: \"Happy second anniversary, Commander~\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60077, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "North Carolina's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60079": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得恶毒及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 901111, + 1 + ], + [ + 2, + 60088, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60079, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(恶毒)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93772", + "virtual_type": 0 + }, + "60080": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得贝尔法斯特及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 202121, + 1 + ], + [ + 2, + 60089, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60080, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(贝尔法斯特)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93773", + "virtual_type": 0 + }, + "60081": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得光辉及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 207031, + 1 + ], + [ + 2, + 60090, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60081, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(光辉)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93774", + "virtual_type": 0 + }, + "60082": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得胡德及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 60091, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60082, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(胡德)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93775", + "virtual_type": 0 + }, + "60083": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得企业及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 60092, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60083, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(企业)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93776", + "virtual_type": 0 + }, + "60084": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得天狼星及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 202201, + 1 + ], + [ + 2, + 60093, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60084, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(天狼星)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93777", + "virtual_type": 0 + }, + "60085": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得鹬及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 307051, + 1 + ], + [ + 2, + 60094, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60085, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(鹬)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93778", + "virtual_type": 0 + }, + "60086": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得鹤及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 307061, + 1 + ], + [ + 2, + 60095, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60086, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(鹤)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93779", + "virtual_type": 0 + }, + "60087": { + "combination_display": [], + "compose_number": 0, + "display": "可以获得厌战及其回礼", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 60096, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60087, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "三周年邀请函(厌战)(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "93780", + "virtual_type": 0 + }, + "60088": { + "combination_display": [], + "compose_number": 0, + "display": "由恶毒赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60088, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "恶毒的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60089": { + "combination_display": [], + "compose_number": 0, + "display": "由贝尔法斯特赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60089, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "贝尔法斯特的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60090": { + "combination_display": [], + "compose_number": 0, + "display": "由光辉赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60090, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "光辉的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60091": { + "combination_display": [], + "compose_number": 0, + "display": "由胡德赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60091, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "胡德的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60092": { + "combination_display": [], + "compose_number": 0, + "display": "由企业赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60092, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "企业的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60093": { + "combination_display": [], + "compose_number": 0, + "display": "由天狼星赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60093, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "天狼星的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60094": { + "combination_display": [], + "compose_number": 0, + "display": "由鹬赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60094, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "鹬的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60095": { + "combination_display": [], + "compose_number": 0, + "display": "由鹤赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60095, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "鹤的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60096": { + "combination_display": [], + "compose_number": 0, + "display": "由厌战赠与的,作为宴会邀约的回礼", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60096, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "厌战的回礼(不该看到)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60097": { + "combination_display": [], + "compose_number": 0, + "display": "使用后可以邀请一名特定对象参加宴会(获得指定角色)", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60097, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "庆典邀请函(不该看到)", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_third_jp" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709 + ], + "virtual_type": 0 + }, + "60105": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the New Year. Can be used to invite an SR ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60105, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Invitation", + "open_directly": 0, + "open_ui": [ + "shrine_year", + "t_shrine" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 801, + 802, + 803, + 804, + 805, + 806, + 807 + ], + "virtual_type": 0 + }, + "60106": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Warspite and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 60113, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60106, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94205", + "virtual_type": 0 + }, + "60107": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Atago and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 303121, + 1 + ], + [ + 2, + 60114, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60107, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94206", + "virtual_type": 0 + }, + "60108": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Illustrious and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 207031, + 1 + ], + [ + 2, + 60115, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60108, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94207", + "virtual_type": 0 + }, + "60109": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Shoukaku and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 307051, + 1 + ], + [ + 2, + 60116, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60109, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94208", + "virtual_type": 0 + }, + "60110": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Zuikaku and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 307061, + 1 + ], + [ + 2, + 60117, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60110, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zuikaku's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94209", + "virtual_type": 0 + }, + "60111": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Montpelier and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 102141, + 1 + ], + [ + 2, + 60118, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60111, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94210", + "virtual_type": 0 + }, + "60112": { + "combination_display": [], + "compose_number": 0, + "display": "Use to obtain Hood and her New Year's Tidings.", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 60119, + 1 + ] + ], + "icon": "Props/nianhezhuang2021", + "id": 60112, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Gift (New Year 2021)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94211", + "virtual_type": 0 + }, + "60113": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Warspite. It reads: \"Happy New Year. Let us renew our oath of absolute devotion to Her Majesty.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60113, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60114": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Atago. It reads: \"Happy New Year. How about we take our new year's *promises* to the next level~?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60114, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60115": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Illustrious. It reads: \"Happy New Year to you, Commander. May this year be something truly special for you.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60115, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60116": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Shoukaku. It reads: \"Happy New Year, Commander. We hope to continue serving you well throughout the year.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60116, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60117": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Zuikaku. It reads: \"Happy New Year! Me and my sister are counting on you!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60117, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zuikaku's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60118": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Montpelier. It reads: \"...Happy New Year. This year, I'll work harder than ever for my big sis.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60118, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60119": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Hood. It reads: \"I wish you a happy New Year, Commander. Let us wish for a year of elegance and glory.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2021", + "id": 60119, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's New Year Tidings", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60129": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the Lunar New Year. Can be used to invite a ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60129, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (2021)", + "open_directly": 0, + "open_ui": [ + "greeting_year", + "t_greeting" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 901, + 902, + 903, + 904, + 905 + ], + "virtual_type": 0 + }, + "60130": { + "combination_display": [], + "compose_number": 0, + "display": "Used to obtain Taihou and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 307071, + 1 + ], + [ + 2, + 60135, + 1 + ] + ], + "icon": "Props/henianka", + "id": 60130, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (Taihou)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94619", + "virtual_type": 0 + }, + "60131": { + "combination_display": [], + "compose_number": 0, + "display": "Used to obtain Enterprise and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 60136, + 1 + ] + ], + "icon": "Props/henianka", + "id": 60131, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (Enterprise)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94620", + "virtual_type": 0 + }, + "60132": { + "combination_display": [], + "compose_number": 0, + "display": "Used to obtain Belfast and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 202121, + 1 + ], + [ + 2, + 60137, + 1 + ] + ], + "icon": "Props/henianka", + "id": 60132, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (Belfast)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94621", + "virtual_type": 0 + }, + "60133": { + "combination_display": [], + "compose_number": 0, + "display": "Used to obtain Ning Hai and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 502021, + 1 + ], + [ + 2, + 60138, + 1 + ] + ], + "icon": "Props/henianka", + "id": 60133, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (Ning Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94622", + "virtual_type": 0 + }, + "60134": { + "combination_display": [], + "compose_number": 0, + "display": "Used to obtain Ping Hai and her commemorative item.", + "display_effect": "", + "display_icon": [ + [ + 4, + 502031, + 1 + ], + [ + 2, + 60139, + 1 + ] + ], + "icon": "Props/henianka", + "id": 60134, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (Ping Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "94623", + "virtual_type": 0 + }, + "60135": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Taihou. It reads: \"Commander, would you like to hear Taihou's song~?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60135, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Taihou)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60136": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Enterprise. It reads: \"Let us decide the trajectory of this coming year with a single shot.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60136, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Enterprise)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60137": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Belfast. It reads: \"Master, what would you like to accomplish this coming year?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60137, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Belfast)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60138": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Ning Hai. It reads: \"Commander, let's party the year away!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60138, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Ning Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60139": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Ping Hai. It reads: \"Commander, want some baozi~?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka", + "id": 60139, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Ping Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60149": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive an SR ship of your choosing as well as a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60149, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Early Summer Invitation 2021", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_fourth" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1001, + 1002, + 1003, + 1004, + 1005, + 1006, + 1007, + 1008 + ], + "virtual_type": 0 + }, + "60150": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Atago. ", + "display_effect": "", + "display_icon": [ + [ + 4, + 303121, + 1 + ], + [ + 2, + 60158, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60150, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Atago's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95352", + "virtual_type": 0 + }, + "60151": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Montpelier", + "display_effect": "", + "display_icon": [ + [ + 4, + 102141, + 1 + ], + [ + 2, + 60159, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60151, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95353", + "virtual_type": 0 + }, + "60152": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Takao. . ", + "display_effect": "", + "display_icon": [ + [ + 4, + 303111, + 1 + ], + [ + 2, + 60160, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60152, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Takao's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95354", + "virtual_type": 0 + }, + "60153": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Hood", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 60161, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60153, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95355", + "virtual_type": 0 + }, + "60154": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Enterprise", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 60162, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60154, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95356", + "virtual_type": 0 + }, + "60155": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Swiftsure", + "display_effect": "", + "display_icon": [ + [ + 4, + 202231, + 1 + ], + [ + 2, + 60163, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60155, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Swiftsure's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95357", + "virtual_type": 0 + }, + "60156": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Prince of Wales", + "display_effect": "", + "display_icon": [ + [ + 4, + 205061, + 1 + ], + [ + 2, + 60164, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60156, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Prince of Wales's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95358", + "virtual_type": 0 + }, + "60157": { + "combination_display": [], + "compose_number": 0, + "display": "A letter from Warspite", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 60165, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60157, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95359", + "virtual_type": 0 + }, + "60158": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Atago", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60158, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Atago", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60159": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Montpelier", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60159, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Montpelier", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60160": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Takao", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60160, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Takao", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60161": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60161, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Hood", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60162": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60162, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Enterprise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60163": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Swiftsure", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60163, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Swiftsure", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60164": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Prince of Wales", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60164, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Prince of Wales", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60165": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60165, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Warspite", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60166": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to receive an SR ship of your choosing as well as a commemorative item. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60166, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "3rd Anniversary Invitation", + "open_directly": 0, + "open_ui": [ + "login_year" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1107, + 1108, + 1109 + ], + "virtual_type": 0 + }, + "60167": { + "combination_display": [], + "compose_number": 0, + "display": "BelfastA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 202121, + 1 + ], + [ + 2, + 60176, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60167, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95921", + "virtual_type": 0 + }, + "60168": { + "combination_display": [], + "compose_number": 0, + "display": "WarspiteA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 205021, + 1 + ], + [ + 2, + 60177, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60168, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Warspite's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95922", + "virtual_type": 0 + }, + "60169": { + "combination_display": [], + "compose_number": 0, + "display": "HoodA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 204031, + 1 + ], + [ + 2, + 60178, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60169, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95923", + "virtual_type": 0 + }, + "60170": { + "combination_display": [], + "compose_number": 0, + "display": "EnterpriseA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 107061, + 1 + ], + [ + 2, + 60179, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60170, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95924", + "virtual_type": 0 + }, + "60171": { + "combination_display": [], + "compose_number": 0, + "display": "IllustriousA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 207031, + 1 + ], + [ + 2, + 60180, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60171, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95925", + "virtual_type": 0 + }, + "60172": { + "combination_display": [], + "compose_number": 0, + "display": "Le MalinA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 901111, + 1 + ], + [ + 2, + 60181, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60172, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Malin's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95926", + "virtual_type": 0 + }, + "60173": { + "combination_display": [], + "compose_number": 0, + "display": "SiriusA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 202201, + 1 + ], + [ + 2, + 60182, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60173, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Sirius's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95927", + "virtual_type": 0 + }, + "60174": { + "combination_display": [], + "compose_number": 0, + "display": "North CarolinaA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 105121, + 1 + ], + [ + 2, + 60183, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60174, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "North Carolina's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95928", + "virtual_type": 0 + }, + "60175": { + "combination_display": [], + "compose_number": 0, + "display": "WashingtonA letter from ", + "display_effect": "", + "display_icon": [ + [ + 4, + 105131, + 1 + ], + [ + 2, + 60184, + 1 + ] + ], + "icon": "Props/yaoqinghan", + "id": 60175, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Washington's Letter", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 11, + "usage": "usage_drop", + "usage_arg": "95929", + "virtual_type": 0 + }, + "60176": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Belfast", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60176, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Belfast", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60177": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Warspite", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60177, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Warspite", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60178": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Hood", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60178, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Hood", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60179": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Enterprise", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60179, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Enterprise", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60180": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Illustrious", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60180, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Illustrious", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60181": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Le Malin", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60181, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Le Malin", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60182": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Sirius", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60182, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Sirius", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60183": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from North Carolina", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60183, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from North Carolina", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60184": { + "combination_display": [], + "compose_number": 0, + "display": "A thank-you gift from Washington", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60184, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Gift from Washington", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60209": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Shoukaku. It reads: \"Happy New Year. Won't you join me, so we can watch the fireworks together?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60209, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60210": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Zuikaku. It reads: \"Hey! You gotten your luck prediction for the year yet? Whatever fortune you got, you'll be A-OK with me by your side!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60210, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zuikaku's Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60211": { + "combination_display": [], + "compose_number": 0, + "display": "A lazily scribbled note from Le Malin. It reads: \"Happy New Year! Have a good one without me – I need my New Year's beauty sleep.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60211, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Malin's Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60212": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Victorious. It reads: \"Happy New Year! Here's to another year of glorious victory! And victorious glory!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60212, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Victorious' Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60213": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tirpitz. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60213, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Tirpitz's Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60214": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Illustrious. It reads: \"Happy New Year. May the light guide us forward into the new year and beyond.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60214, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious' Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_invitation", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60215": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Essex. It reads: \"Happy New Year! I hope we'll get to make many more meme– Ahem, MEMORIES together this year!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60215, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Essex's Gift (New Year 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60216": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the New Year. Can be used to invite an SR ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2022", + "id": 60216, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Invitation (New Year 2022)", + "open_directly": 0, + "open_ui": [ + "shrine_year", + "t_shrine" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1301, + 1302, + 1303, + 1304, + 1305, + 1306, + 1307 + ], + "virtual_type": 0 + }, + "60226": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the Lunar New Year. Can be used to invite a ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60226, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (2022)", + "open_directly": 0, + "open_ui": [ + "greeting_year", + "t_greeting" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1406, + 1407, + 1402, + 1404, + 1405, + 1401, + 1403 + ], + "virtual_type": 0 + }, + "60227": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Taihou.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60227, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Taihou)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60228": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Enterprise.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60228, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Enterprise)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60229": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Belfast. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60229, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Belfast)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60230": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Ning Hai.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60230, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Ning Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60231": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Ping Hai.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60231, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Ping Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60232": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Chang Chun.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60232, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Chang Chun)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60233": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tai Yuan. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2022", + "id": 60233, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Tai Yuan)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60235": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to invite an SR ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60235, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Early Summer Invitation (2022)", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_fifth" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1501, + 1502, + 1503, + 1504, + 1505, + 1506, + 1507, + 1508 + ], + "virtual_type": 0 + }, + "60236": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tirpitz. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60236, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Tirpitz's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60237": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Graf Zeppelin. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60237, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Graf Zeppelin's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60238": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Washington. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60238, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Washington's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60239": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Hood. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60239, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60240": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Yukikaze. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60240, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Yukikaze's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60241": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Montpelier. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60241, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60242": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Swiftsure. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60242, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Swiftsure's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60243": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Le Malin. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60243, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Malin's Gift (Early Summer 2022)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60244": { + "combination_display": [], + "compose_number": 0, + "display": "Can be used to invite an SR ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60244, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "4th Anniversary Invitation", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_fourth_us" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1601, + 1602, + 1603, + 1604, + 1605, + 1606, + 1607, + 1608 + ], + "virtual_type": 0 + }, + "60245": { + "combination_display": [], + "compose_number": 0, + "display": "A card from U-96. It reads: \"Time flies, eh? Still remember the day I came here like it was yesterday, 'cept I've made tons of friends and memories since then. This year's been great so far and it's only gonna get better! Right, Commander?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60245, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "U-96's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60246": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Essex. It reads: \"Happy anniversary, Commander. How many years at this port does that make it now? It feels like we've known each other practically forever... I dare say that's a bit mysterious. Maybe this is a case for Detective Ess– Err, I mean, Detective Bristol!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60246, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Essex's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60247": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Enterprise. It reads: \"Happy anniversary, Commander. It's been a real journey getting to where we are now, and there's still a long road ahead of us. Hope I can be with you every step of the way.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60247, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60248": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Hood. It reads: \"My, it's been really hot lately, hasn't it? Not just the weather, but the passions in all our hearts. After all, who wouldn't be excited to celebrate another anniversary with all their friends? Here's to a continued splendid year, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60248, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Hood's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60249": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Yukikaze. It reads: \"Le Malin thought she could draw a better straw than Yukikaze the Great! What a moron! Listen, Commander, this is an occasion to celebrate, so I'm going to give you my blessing of luck! Make the most of it while it lasts~\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60249, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Yukikaze's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60250": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Montpelier. It reads: \"Crazy how much has changed in one year and how much has stayed the same. I've gotten closer to Cleve, hung out with friends, celebrated holidays... In a way it's been like any other year, but fresh in some way. Anyway, happy anniversary, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60250, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Montpelier's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60251": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Swiftsure. It reads: \"I've never felt quite sure I'm celebrating the port's anniversary right. Sure, I can dance decently, strike up conversations, and just have fun, but... I don't know, it feels like something's missing. Maybe I'm just being weird. At any rate, happy anniversary, Commander!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60251, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Swiftsure's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60252": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Le Malin. It reads: \"Ugghhh... I'm gonna melt like ice cream in this heat... Can I really not get one of my sisters to fill in for me? I'll be with you in spirit, celebrating from the comfort of my air-conditioned room, I promise...\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60252, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Malin's Gift (4th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60276": { + "combination_display": [], + "compose_number": 0, + "display": "由鸗处收到的,新年年贺状", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60276, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "鸗的年贺状", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60277": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Graf Zeppelin. It reads: \"May your New Year's be filled not with hatred, but with love.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60277, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Graf Zeppelin's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60278": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Le Triomphant. It reads: \"Happy New Year. If you wish to spend the holiday lazing about – like Le Malin – you can do so guilt-free.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60278, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Triomphant's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60279": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Belfast. It reads: \"I wish you a happy New Year, Master. As your humble servant, I am always ready to serve.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60279, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60280": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Zara. It reads: \"Pola's gunning for those New Year lucky bags. Hope you're ready for a fight, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60280, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zara's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60281": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Illustrious. It reads: \"Happy New Year, Commander. Will you stay up with me and watch the first sunset of the year?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60281, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60282": { + "combination_display": [], + "compose_number": 0, + "display": "A card from South Dakota. It reads: \"I'm thinking about New Year's resolutions. What's a good goal, in your eyes?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60282, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "South Dakota's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60283": { + "combination_display": [], + "compose_number": 0, + "display": "Blessings and tidings for the New Year. Can be used to invite an SR ship of your choosing to join you.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60283, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Invitation (New Year 2023)", + "open_directly": 0, + "open_ui": [ + "shrine_year", + "t_shrine" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1802, + 1803, + 1804, + 1805, + 1806, + 1807, + 1808 + ], + "virtual_type": 0 + }, + "60284": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Shoukaku. It reads: \"As always, thank you for all you do. Let's spend New Year's getting some well-earned rest.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2023", + "id": 60284, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shoukaku's Gift (New Year 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60290": { + "combination_display": [], + "compose_number": 0, + "display": "A card with a handwritten seasonal greeting. Can be used to receive a shipgirl of your choice and a commemorative item.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60290, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Invitation (2023)", + "open_directly": 0, + "open_ui": [ + "greeting_year", + "t_greeting" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 1901, + 1902, + 1903, + 1904, + 1905, + 1906, + 1907, + 1908 + ], + "virtual_type": 0 + }, + "60291": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Taihou. It reads: \"My Commander, what song shall I play to you for the evening entertainment?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60291, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Taihou)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60292": { + "combination_display": [], + "compose_number": 0, + "display": "A card from U-110. It reads: \"It's the year of the shaaark. Raaawr.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60292, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (U-110)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60293": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Alabama. It reads: \"Those baozi are damn good. Let's sit down sometime and eat 'em together.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60293, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Alabama)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60294": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Chao Ho. It reads: \"Happy Lunar New Year, Commander. P.S., I'm the big sister!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60294, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Chao Ho)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60295": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Ying Swei. It reads: \"Happy Lunar New Year, Commander. P.S., I'm the big sister.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60295, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Ying Swei)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60296": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Chang Chun. It reads: \"Yeah, I've got missiles, but all I wanna fire right now are fireworks!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60296, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Chang Chun)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60297": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tai Yuan. It reads: \"Happy Lunar New Year. We'd better keep an eye on Fu Shun until the holiday is over.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60297, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Tai Yuan)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60298": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Yat Sen. It reads: \"It's always a pleasure to have you at our gatherings, Commander. You're welcome to join us again this year.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2023", + "id": 60298, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Yat Sen)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60316": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive an SR ship of your choosing as well as a commemorative note.", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60316, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Early Summer Invitation (2023)", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_sixth" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 2001, + 2002, + 2003, + 2004, + 2005, + 2006, + 2007, + 2008 + ], + "virtual_type": 0 + }, + "60317": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Taihou. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60317, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Taihou's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60318": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Amagi. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60318, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Amagi's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60319": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Washington. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60319, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Washington's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60320": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Chapayev. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60320, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Chapayev's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60321": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Illustrious. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60321, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Illustrious's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60322": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Graf Zeppelin. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60322, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Graf Zeppelin's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60323": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Pola . It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60323, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Pola's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60324": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Le Malin. It reads: \"Winter gives way to spring, and spring gives way to an early summer this year, it seems. Let us enjoy the sunshine to its fullest, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60324, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Le Malin's Gift (Early Summer 2023)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60414": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive an SR ship of your choosing as well as a commemorative note.", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60414, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "5th Anniversary Invitation", + "open_directly": 0, + "open_ui": [ + "login_year", + "t_fifth_us" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 2101, + 2102, + 2103, + 2104, + 2105, + 2106, + 2107, + 2108 + ], + "virtual_type": 0 + }, + "60415": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Richelieu. It reads: \"I wish you a pleasant anniversary, Commander. We're just past the first half of a wonderful year, and I believe the trend will continue into the second half. May the Holy Iris grace you with its blessings. P.S.: I hope you enjoy our banquet.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60415, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Richelieu's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60416": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Enterprise. It reads: \"Another year, huh? Well, it's not JUST another year. I've seen new sights, made new friends, and formed new memories I'll treasure forever. I hope you have too, Commander. Happy anniversary.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60416, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Enterprise's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60417": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Essex. It reads: \"Happy anniversary, Commander! Whenever this time of year comes around, I'm always reminded of what a pleasure and honor it is to be at this port. Thank you for all you do for us. Also, if you have time later, will you drop by and test a lemonade cocktail recipe I've been working on?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60417, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Essex's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60418": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Belfast. It reads: \"I wish you a happy anniversary, Master. Her Majesty requested that I deliver you a bottle of some our finest aged wine. At the risk of sounding brazen, would you like to share a glass with your humble maid?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60418, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Belfast's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60419": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Formidable. It reads: \"Happy anniversary, Commander. I've been thinking – the classical music we play at our tea parties is fine and all, but don't you want to experience something new? I propose a private tea party between you and me. You bring the tea set, and I'll bring the rock records.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60419, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Formidable's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60420": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Amagi. It reads: \"Every anniversary is precious to me. It's a time to reminisce on fond memories, reconnect with old friends, and celebrate all the progress we've made. This one is no different, and I'm glad to be a part of it. Here is to your good health, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60420, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Amagi's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60421": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Avrora. It reads: \"Here we are again, Commander. Happy anniversary! What are your highlights of the year thus far? I hope you've met new people, sung good songs, and enjoyed some fine spirits. If you ever need a drinking buddy, you know where to find me!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60421, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Avrora's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60422": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Zara. It reads: \"Hey, Commander. What a hot summer it's been, am I right? Wish I could wear something less... formal to the celebrations, but you know how the rules are. Here's to our anniversary, and to a good year!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/yaoqinghan", + "id": 60422, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zara's Gift (5th Anniversary)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60450": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Kazagumo. It reads: \"Happy New Year. If you want me to serve you for New Year's, then... I suppose I could.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60450, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Kazagumo's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60451": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Richelieu. It reads: \"May the Holy Iris' blessings be with you into New Year's Day and beyond.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60451, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Richelieu's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60452": { + "combination_display": [], + "compose_number": 0, + "display": "A card from U-101. It reads: \"Come over and board Great Shark! I'll take you on a ride and we'll finish with the view of the first sunrise of the year!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60452, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "U-101's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60453": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Formidable. It reads: \"My New Year's resolution is to moderate my food intake. May you have a graceful New Year, Commander.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60453, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Formidable's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60454": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Shangri-La. It reads: \"The new year starts with a fresh notebook, waiting to be filled with daily happinesses. Happy New Year.\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60454, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Shangri-La's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60455": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Zara. It reads: \"I've got my scarf, I've got my bag, I've got you. What else do I need?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60455, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Zara's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60456": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tashkent. It reads: \"Happy New Year, dear comrade. Why don't we toast with a hot drink?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60456, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Tashkent's Gift (New Year 2024)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60457": { + "combination_display": [], + "compose_number": 0, + "display": "Use to receive an SR shipgirl of your choosing and a commemorative item.", + "display_effect": "", + "display_icon": [], + "icon": "Props/nianhezhuang2024", + "id": 60457, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "New Year's Invitation (2024)", + "open_directly": 0, + "open_ui": [ + "shrine_year", + "t_shrine" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 2301, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307 + ], + "virtual_type": 0 + }, + "60459": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Taihou. It reads: \"It's so noisy outside... Why don't we just lock ourselves indoors and get busy with our own 'celebrations,' my Commander?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60459, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Taihou)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60460": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Yat Sen. It reads: \"Happy Lunar New Year, Commander. Have you tried Ning's and Ping's baozis? They're very good!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60460, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Yat Sen)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60461": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Hwah Jah. It reads: \"There's plenty of fun to be had at this time of year. Why don't we start with... skipping our obligations and grabbing a bite?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60461, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Hwah Jah)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60462": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Chen Hai. It reads: \"Happy Lunar New Year. This year is off to a fantastic start already – wouldn't you agree, Commander?\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60462, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Chen Hai)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60463": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Tai Yuan. It reads: \"Happy Year of the Dragon, Commander! Be sure to stop by our dorm for An Shan's speech later!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60463, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Tai Yuan)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60464": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Charybdis. It reads: \"May you have a fortuitous New Year, Master. Should you find yourself in need of anything, you know who to call!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60464, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Charybdis)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60465": { + "combination_display": [], + "compose_number": 0, + "display": "A card from Bristol. It reads: \"A monster called the 'nian' that appears during Lunar New Year, you say? Sounds like a case for investigator Bristol!\"", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60465, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (Bristol)", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 9, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "60466": { + "combination_display": [], + "compose_number": 0, + "display": "A card with a handwritten seasonal greeting. Can be used to receive a shipgirl of your choice and a commemorative item.", + "display_effect": "", + "display_icon": [], + "icon": "Props/henianka2024", + "id": 60466, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Festival Tidings (2024)", + "open_directly": 0, + "open_ui": [ + "greeting_year", + "t_greeting" + ], + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 21, + "usage": "usage_invitation", + "usage_arg": [ + 2401, + 2402, + 2403, + 2404, + 2405, + 2406, + 2407 + ], + "virtual_type": 0 + }, + "61001": { + "combination_display": [], + "compose_number": 0, + "display": "A special instruction manual designed to improve combat efficiency, used before starting a sortie. Upon use, that sortie will expend twice as much Oil and give twice the rewards. ", + "display_effect": "", + "display_icon": [], + "icon": "Props/tebiezuozhan", + "id": 61001, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "High-Efficiency Combat Logistics Plan ", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 19, + "usage": "usage_special_operation", + "usage_arg": "[5,8,9,47,48]", + "virtual_type": 0 + }, + "69959": { + "combination_display": [], + "compose_number": 0, + "display": "Receive a random T5 Tech Pack", + "display_effect": "OpenBox", + "display_icon": [], + "icon": "Props/30005", + "id": 69959, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Mystery T5 Tech Pack", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [ + 1, + 100 + ], + "rarity": 5, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 5, + "usage": "usage_drop", + "usage_arg": "69959", + "virtual_type": 0 + }, + "81200": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Resplendent Night I), 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86200, + 1 + ], + [ + 1, + 4, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai9", + "id": 81200, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Resplendent Night Lucky Bag I", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998300", + "virtual_type": 0 + }, + "81201": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Resplendent Night I), 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86201, + 1 + ], + [ + 1, + 4, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai10", + "id": 81201, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Resplendent Night Lucky Bag II", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998301", + "virtual_type": 0 + }, + "81202": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Lunar New Year 2024 A), 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86202, + 1 + ], + [ + 1, + 4, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai11", + "id": 81202, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Lucky Box 2024 A", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998302", + "virtual_type": 0 + }, + "81203": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Lunar New Year 2024 B), 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86203, + 1 + ], + [ + 1, + 4, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai12", + "id": 81203, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Spring Lucky Box 2024 B", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998303", + "virtual_type": 0 + }, + "81400": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin (Cyber City), 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86400, + 1 + ], + [ + 1, + 4, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai84", + "id": 81400, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Cyber City Lucky Box", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998500", + "virtual_type": 0 + }, + "81401": { + "combination_display": [], + "compose_number": 0, + "display": "Contains 1x random skin, 2x Special General Blueprints - Series 6, 2024x Gems, 50x Cognitive Chips, 20x Wisdom Cubes, 100x Decor Tokens, and 10x Quick Finishers.", + "display_effect": "", + "display_icon": [ + [ + 2, + 86401, + 1 + ], + [ + 1, + 14, + 2024 + ], + [ + 2, + 42056, + 2 + ], + [ + 2, + 15008, + 50 + ], + [ + 2, + 20001, + 20 + ], + [ + 2, + 15003, + 10 + ], + [ + 1, + 6, + 100 + ] + ], + "icon": "Props/fudai85", + "id": 81401, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Adventurer's Lucky Chest", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "998501", + "virtual_type": 0 + }, + "99958": { + "combination_display": [], + "compose_number": 0, + "display": "Come join us on a wondrous night of fun and surprises!", + "display_effect": "", + "display_icon": [], + "icon": "Props/wuzhounian_us_invite", + "id": 99958, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "5th Anniversary Invitation", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "99960": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54011", + "id": 99960, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 10 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69960", + "virtual_type": 0 + }, + "99961": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54011", + "id": 99961, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 10 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 1, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69961", + "virtual_type": 0 + }, + "99962": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54012", + "id": 99962, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 25 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69962", + "virtual_type": 0 + }, + "99963": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54012", + "id": 99963, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 25 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69963", + "virtual_type": 0 + }, + "99964": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54012", + "id": 99964, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 35 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69964", + "virtual_type": 0 + }, + "99965": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54012", + "id": 99965, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 35 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69965", + "virtual_type": 0 + }, + "99966": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54013", + "id": 99966, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 50 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69966", + "virtual_type": 0 + }, + "99967": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54013", + "id": 99967, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 50 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69967", + "virtual_type": 0 + }, + "99968": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54013", + "id": 99968, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 75 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69968", + "virtual_type": 0 + }, + "99969": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54013", + "id": 99969, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Escort Mission Lv. 75 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69969", + "virtual_type": 0 + }, + "99970": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54001", + "id": 99970, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Advance Mission Lv. 10 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69970", + "virtual_type": 0 + }, + "99971": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54002", + "id": 99971, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Advance Mission Lv. 25 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69971", + "virtual_type": 0 + }, + "99972": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54002", + "id": 99972, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Advance Mission Lv. 35 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 3, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69972", + "virtual_type": 0 + }, + "99973": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54003", + "id": 99973, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Advance Mission Lv. 50 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69973", + "virtual_type": 0 + }, + "99974": { + "combination_display": [], + "compose_number": 0, + "display": "Open to obtain rewards from a missed Daily Challenge attempt (equal to 1 S-rank clear).", + "display_effect": "", + "display_icon": [], + "icon": "Props/54003", + "id": 99974, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Advance Mission Lv. 70 Compensation Box", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "69974", + "virtual_type": 0 + }, + "99995": { + "combination_display": [], + "compose_number": 0, + "display": "Compensation for rewards that were not properly granted while clearing HT6 in the \"Confluence of Nothingness\" event.", + "display_effect": "", + "display_icon": [], + "icon": "props/giftbox", + "id": 99995, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "\"Confluence of Nothingness\" Compensation", + "open_directly": 1, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": [], + "rarity": 2, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 17, + "usage": "usage_drop", + "usage_arg": "78320", + "virtual_type": 0 + }, + "100011": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Light and Justice", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/lisailiu", + "id": 100011, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Light and Justice", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100012": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Fire and Purity", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/chicheng", + "id": 100012, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Fire and Purity", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100013": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Darkness and Conspiracy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/kelaimengsuo", + "id": 100013, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Darkness and Conspiracy", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100014": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Steel and Dragons", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/bisimaiZ", + "id": 100014, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Steel and Dragons", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100015": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Revivals and Baths", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/weineituo", + "id": 100015, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Revivals and Baths", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100016": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Pioneering and Adventure", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/huangjiacaifu", + "id": 100016, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Pioneering and Adventure", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100017": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Order and Rules", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/tbniang1", + "id": 100017, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Order and Rules", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100018": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Unity and Toughness", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/suweiaitongmengnew", + "id": 100018, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Unity and Toughness", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100019": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Luck and Riches", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/mingshi", + "id": 100019, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Luck and Riches", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100020": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Desserts and Tea Parties", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yilishabai", + "id": 100020, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Desserts and Tea Parties", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100021": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Peace and Protection", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/yixian", + "id": 100021, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Peace and Protection", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100022": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Beginnings and Ends", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/salatuojia", + "id": 100022, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Beginnings and Ends", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100023": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of War", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/qiye_dark", + "id": 100023, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of War", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100024": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Wisdom", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/hailunna_alter", + "id": 100024, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Wisdom", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + }, + "100025": { + "combination_display": [], + "compose_number": 0, + "display": "Blessing of Goddess of Joy", + "display_effect": "", + "display_icon": [], + "icon": "SquareIcon/unknown2", + "id": 100025, + "index": [], + "is_world": 0, + "limit": "[]", + "link_id": 0, + "max_num": 0, + "name": "Goddess of Joy", + "open_directly": 0, + "order": 0, + "other_item_cost": "[]", + "other_resource_cost": "[]", + "price": "", + "rarity": 4, + "replace_item": 0, + "shiptrans_id": [], + "target_id": 0, + "time_limit": 0, + "type": 1, + "usage": "usage_undefined", + "usage_arg": "[]", + "virtual_type": 0 + } +} \ No newline at end of file diff --git a/BLHX.Server.Common/Utils/RNG.cs b/BLHX.Server.Common/Utils/RNG.cs index 3a07b9c..18815b3 100644 --- a/BLHX.Server.Common/Utils/RNG.cs +++ b/BLHX.Server.Common/Utils/RNG.cs @@ -2,6 +2,14 @@ public static class RNG { + public enum Rarity { + Normal = 2, + Rare = 3, + Elite = 4, + SSR = 5, + UR = 6, + } + public static readonly SortedDictionary ShipRarityRates = new() { {6, 1.2f}, // UR diff --git a/BLHX.Server.Game/BLHX.Server.Game.csproj b/BLHX.Server.Game/BLHX.Server.Game.csproj index 0342417..fefcd06 100644 --- a/BLHX.Server.Game/BLHX.Server.Game.csproj +++ b/BLHX.Server.Game/BLHX.Server.Game.csproj @@ -10,4 +10,8 @@ + + + + diff --git a/BLHX.Server.Game/Commands/ItemCommand.cs b/BLHX.Server.Game/Commands/ItemCommand.cs new file mode 100644 index 0000000..f7c2c80 --- /dev/null +++ b/BLHX.Server.Game/Commands/ItemCommand.cs @@ -0,0 +1,59 @@ +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Proto.common; +using BLHX.Server.Game.Handlers; +using System.Numerics; + +namespace BLHX.Server.Game.Commands { + [CommandHandler("item", "Unlock an item or all items", "item unlock=all amount=1")] + public class ItemCommand : Command { + [Argument("unlock")] + public string? Unlock { get; set; } + + [Argument("amount")] + public string? Amount { get; set; } + + public override void Execute(Dictionary args, Connection connection) { + base.Execute(args); + + //uint amount = 1; + + //if (Amount is not null) { + // uint.TryParse(Amount, out uint parsedAmount); + // amount = parsedAmount; + //} + + //if (Unlock is not null) { + // if (Unlock.Equals("all", StringComparison.CurrentCultureIgnoreCase)) { + // // ... + // } else if (uint.TryParse(Unlock, out uint itemId)) { + // //connection.player.DoResource(itemId, amount); + // PlayerResource? item = DBManager.PlayerContext.Resources.Where(res => res.Id == itemId).FirstOrDefault(); + + // if (item is null) { + // DBManager.PlayerContext.Resources.Add(new PlayerResource() { Id = itemId, PlayerUid = connection.player.Uid, Num = 1 }); + // //connection.player.DoResource(itemId, 1); + + // //item = DBManager.PlayerContext.Resources.Where(res => res.Id == itemId).FirstOrDefault(); + // } else { + // item.Num += amount; + // connection.SendSystemMsg($"{amount} item of itemid: {itemId} added!"); + // } + + + // } else { + // connection.SendSystemMsg($"Invalid ItemId: {itemId}"); + // } + //} + + // code above prob doesn't work yet too lazy to implement, for now this cmd just adds a lot of coins and gems, prob need a inventory manager or something in the future + connection.player.DoResource(1, 938493849); + connection.player.DoResource(4, 39843294); + + DBManager.PlayerContext.Save(); + connection.NotifyPlayerData(); + connection.NotifyBagData(); + base.NotifySuccess(connection); + } + } +} diff --git a/BLHX.Server.Game/Commands/SetLevelCommand.cs b/BLHX.Server.Game/Commands/SetLevelCommand.cs new file mode 100644 index 0000000..85b51cd --- /dev/null +++ b/BLHX.Server.Game/Commands/SetLevelCommand.cs @@ -0,0 +1,40 @@ +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Utils; + +namespace BLHX.Server.Game.Commands; + +[CommandHandler("setlevel", "set a player's level", "setlevel uid=1 level=20")] +public class SetLevelCommand : Command { + + [Argument("uid")] + public string? UID { get; set; } + + [Argument("level")] + public string? Level { get; set; } + + public override void Execute(Dictionary args) { + base.Execute(args); + + if (UID is null || Level is null) { + Logger.c.Log($"Usage: /setlevel uid=1 level=20"); + return; + } + + if (!uint.TryParse(UID, out uint targetUID) || !uint.TryParse(Level, out uint targetLevel)) { + Logger.c.Log($"Invalid UID or Level"); + return; + } + + Player? player = DBManager.PlayerContext.Players.Where(p => p.Uid == targetUID).FirstOrDefault(); + + if (player == null) { + Logger.c.Log($"Can not find player with UID: ${targetUID}"); + return; + } + + player.Level = targetLevel; + + DBManager.PlayerContext.Save(); + Logger.c.Log($"Set Player with UID {targetUID}'s level to {targetLevel}"); + } +} diff --git a/BLHX.Server.Game/Commands/SetPlayerDataCommand.cs b/BLHX.Server.Game/Commands/SetPlayerDataCommand.cs new file mode 100644 index 0000000..5dc38ff --- /dev/null +++ b/BLHX.Server.Game/Commands/SetPlayerDataCommand.cs @@ -0,0 +1,50 @@ +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Utils; +using BLHX.Server.Game.Handlers; +using System.ComponentModel; +using System.Globalization; +using System.Reflection; +using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database; + +namespace BLHX.Server.Game.Commands; + +// Chatbox has 40 character limit, original command is setplayerdata shortened -> spd +[CommandHandler("spd", "set a player's data", "spd property=level value=20")] +public class SetPlayerDataCommand : Command { + + [Argument("property")] + public string? Property { get; set; } + + [Argument("value")] + public string? Value { get; set; } + + public override void Execute(Dictionary args, Connection connection) { + base.Execute(args); + + if (Property is null || Value is null) { + connection.SendSystemMsg($"Usage: /spd property= value=1"); + return; + } + + PropertyInfo? targetProperty = typeof(Player).GetProperty(Property); + TypeConverter converter = TypeDescriptor.GetConverter(targetProperty.PropertyType); + + if (converter != null && converter.CanConvertFrom(typeof(string))) { + try { + object targetValue = converter.ConvertFromInvariantString(Value); + + targetProperty.SetValue(connection.player, targetValue); + } catch (Exception) { + connection.SendSystemMsg("Invalid Value"); + return; + } + } else { + connection.SendSystemMsg($"Invalid Player Property!"); + return; + } + + DBManager.PlayerContext.Save(); + connection.NotifyPlayerData(); + connection.SendSystemMsg($"Set Player with UID {connection.player.Uid}'s {Property} to {Value}"); + } +} diff --git a/BLHX.Server.Game/Commands/ShipCommand.cs b/BLHX.Server.Game/Commands/ShipCommand.cs new file mode 100644 index 0000000..bcac1ec --- /dev/null +++ b/BLHX.Server.Game/Commands/ShipCommand.cs @@ -0,0 +1,87 @@ +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Proto.common; +using BLHX.Server.Common.Utils; +using BLHX.Server.Game.Handlers; +using static Microsoft.EntityFrameworkCore.DbLoggerCategory.Database; + +namespace BLHX.Server.Game.Commands { + [CommandHandler("ship", "Unlock a character or all characters", "ship unlock=all rarity=6")] + public class ShipCommand : Command { + [Argument("unlock")] + public string? Unlock { get; set; } + + [Argument("rarity")] + public string? Rarity { get; set; } + + public override void Execute(Dictionary args, Connection connection) { + base.Execute(args); + + if (Unlock is null) { + connection.SendSystemMsg($"Usage: /ship unlock= rarity=1-6"); + return; + } + + if (Unlock.Equals("all", StringComparison.CurrentCultureIgnoreCase)) { + int amount = 585; // adding more than this currently causes the client to crash since too much data is sent in a single packet + Dictionary ship_ids_filter = Data.ShipDataTemplate.Where(x => x.Value.Star == x.Value.StarMax && x.Value.Star >= 5).ToDictionary(); + + List all_ship_ids = ship_ids_filter.Keys.ToList(); + + if (Rarity is not null && int.TryParse(Rarity, out int rarity)) { + all_ship_ids = Data.ShipDataStatistics.Where(ship_data => all_ship_ids.Contains(ship_data.Key) && ship_data.Value.Rarity == rarity).ToDictionary().Keys.ToList(); + } + + List all_ships = all_ship_ids.Select(ship_id => CreateShipFromId((uint)ship_id, connection.player.Uid)).Take(amount).ToList(); + + all_ships.AddRange(GetDefaultShips(connection.player.Ships)); // add the defaults + connection.player.Ships = all_ships; + connection.SendSystemMsg($"Added {amount} ships!"); + + } else if (Unlock.Equals("clear", StringComparison.CurrentCultureIgnoreCase)) { + connection.player.Ships = GetDefaultShips(connection.player.Ships); + connection.SendSystemMsg($"Cleared all ships!"); + + } else if (uint.TryParse(Unlock, out uint shipId)) { + connection.player.AddShip(shipId); + + } else { + connection.SendSystemMsg($"Invalid Ship Id: {shipId}"); + return; + } + + Rarity = null; + DBManager.PlayerContext.Save(); + connection.NotifyShipData(); + base.NotifySuccess(connection); + } + + public static PlayerShip CreateShipFromId(uint shipId, uint playerUid) { + if (!Data.ShipDataTemplate.TryGetValue((int)shipId, out var shipTemplate)) + throw new InvalidDataException($"Ship template {shipId} not found!"); + + var ship = new PlayerShip() { + TemplateId = shipId, + Level = 1, + EquipInfoLists = [ + new EquipskinInfo() { Id = shipTemplate.EquipId1 }, + new EquipskinInfo() { Id = shipTemplate.EquipId2 }, + new EquipskinInfo() { Id = shipTemplate.EquipId3 }, + new EquipskinInfo(), + new EquipskinInfo(), + ], + Energy = shipTemplate.Energy, + SkillIdLists = shipTemplate.BuffList.Select(x => new Shipskill() { SkillId = x, SkillLv = 1 }).ToList(), + Intimacy = 5000, + + PlayerUid = playerUid + }; + + return ship; + } + + public static ICollection GetDefaultShips(ICollection playerShips) { + return playerShips.Where(ship => ship.TemplateId == 106011 || ship.TemplateId == 101171).ToList(); + } + } +} diff --git a/BLHX.Server.Game/Connection.cs b/BLHX.Server.Game/Connection.cs index 35f6565..8e147b5 100644 --- a/BLHX.Server.Game/Connection.cs +++ b/BLHX.Server.Game/Connection.cs @@ -22,7 +22,8 @@ namespace BLHX.Server.Game readonly Task loopTask; ushort packetIdx = 0; private ushort NextPacketIdx => packetIdx; - public IPEndPoint EndPoint => (IPEndPoint?)tcpClient.Client.RemoteEndPoint ?? IPEndPoint.Parse("0.0.0.0:0"); + public IPEndPoint EndPoint => tcpClient?.Client?.RemoteEndPoint as IPEndPoint ?? IPEndPoint.Parse("0.0.0.0:0"); + public Connection(TcpClient tcpClient) { diff --git a/BLHX.Server.Game/Handlers/P10.cs b/BLHX.Server.Game/Handlers/P10.cs index f4ce4ec..f1cec70 100644 --- a/BLHX.Server.Game/Handlers/P10.cs +++ b/BLHX.Server.Game/Handlers/P10.cs @@ -2,18 +2,15 @@ using BLHX.Server.Common.Database; using BLHX.Server.Common.Proto; using BLHX.Server.Common.Data; +using BLHX.Server.Common.Utils; -namespace BLHX.Server.Game.Handlers -{ - internal static class P10 - { +namespace BLHX.Server.Game.Handlers { + internal static class P10 { #region GateCommands [PacketHandler(Command.Cs10800)] - static void VersionHandler(Connection connection, Packet packet) - { + static void VersionHandler(Connection connection, Packet packet) { var req = packet.Decode(); - connection.Send(new Sc10801() - { + connection.Send(new Sc10801() { GatewayIp = Config.Instance.Address, GatewayPort = Config.Instance.Port, Url = "http://" + Config.Instance.Address, @@ -37,14 +34,12 @@ namespace BLHX.Server.Game.Handlers } [PacketHandler(Command.Cs10020)] - static void UserLoginHandler(Connection connection, Packet packet) - { + static void UserLoginHandler(Connection connection, Packet packet) { // Arg2 uid // Arg3 accessToken // CheckKey md5(Arg1 + salt) var req = packet.Decode(); - connection.Send(new Sc10021() - { + connection.Send(new Sc10021() { Result = 0, AccountId = uint.Parse(req.Arg2), Serverlists = [ @@ -65,14 +60,12 @@ namespace BLHX.Server.Game.Handlers #endregion [PacketHandler(Command.Cs10022)] - static void ServerLoginHandler(Connection connection, Packet packet) - { + static void ServerLoginHandler(Connection connection, Packet packet) { var req = packet.Decode(); var rsp = new Sc10023(); var account = DBManager.AccountContext.Accounts.SingleOrDefault(x => x.Uid == req.AccountId); - if (account is null || account.Token != req.ServerTicket) - { + if (account is null || account.Token != req.ServerTicket) { rsp.Result = 1; connection.Send(rsp); connection.EndProtocol(); @@ -83,8 +76,7 @@ namespace BLHX.Server.Game.Handlers rsp.ServerTicket = req.ServerTicket; var player = DBManager.PlayerContext.Players.SingleOrDefault(x => x.Token == req.ServerTicket); - if (player is null) - { + if (player is null) { connection.Send(rsp); return; } @@ -96,12 +88,10 @@ namespace BLHX.Server.Game.Handlers } [PacketHandler(Command.Cs10024)] - static void CreateNewPlayerHandler(Connection connection, Packet packet) - { + static void CreateNewPlayerHandler(Connection connection, Packet packet) { var req = packet.Decode(); var rsp = new Sc10025(); - if (connection.player is not null) - { + if (connection.player is not null) { rsp.Result = 1011; connection.Send(rsp); return; @@ -114,10 +104,17 @@ namespace BLHX.Server.Game.Handlers } [PacketHandler(Command.Cs10100, IsNotifyHandler = true)] - static void HeartbeatHandler(Connection connection, Packet packet) - { + static void HeartbeatHandler(Connection connection, Packet packet) { connection.Send(new Sc10101()); connection.Tick(); } + + [PacketHandler(Command.Cs10992)] + static void LevelUpHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + + } + } } diff --git a/BLHX.Server.Game/Handlers/P11.cs b/BLHX.Server.Game/Handlers/P11.cs index d132837..7fee4b0 100644 --- a/BLHX.Server.Game/Handlers/P11.cs +++ b/BLHX.Server.Game/Handlers/P11.cs @@ -2,16 +2,12 @@ using BLHX.Server.Common.Proto; using BLHX.Server.Common.Proto.p11; -namespace BLHX.Server.Game.Handlers -{ - internal static class P11 - { +namespace BLHX.Server.Game.Handlers { + internal static class P11 { [PacketHandler(Command.Cs11001)] - static void ServerTimeHandler(Connection connection, Packet packet) - { + static void ServerTimeHandler(Connection connection, Packet packet) { connection.InitClientData(); - connection.Send(new Sc11002() - { + connection.Send(new Sc11002() { Timestamp = (uint)DateTimeOffset.Now.ToUnixTimeSeconds(), Monday0oclockTimestamp = Connection.Monday0oclockTimestamp, ShipCount = connection.player is null ? 0 : (uint)connection.player.Ships.Count @@ -20,102 +16,127 @@ namespace BLHX.Server.Game.Handlers } [PacketHandler(Command.Cs11009, SaveDataAfterRun = true)] - static void ChangeManifestoHandler(Connection connection, Packet packet) - { + static void ChangeManifestoHandler(Connection connection, Packet packet) { var req = packet.Decode(); connection.player.Adv = req.Adv; connection.Send(new Sc11010()); } + + [PacketHandler(Command.Cs11011, SaveDataAfterRun = true)] + static void ChangePlayerIconHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc11012()); + } [PacketHandler(Command.Cs11013, SaveDataAfterRun = true)] - static void HarvestResourceHandler(Connection connection, Packet packet) - { + static void HarvestResourceHandler(Connection connection, Packet packet) { var req = packet.Decode(); connection.player.HarvestResourceField((ResourceFieldType)req.Type); connection.Send(new Sc11014()); } + [PacketHandler(Command.Cs11019, SaveDataAfterRun = true)] + static void UpdateCommonFlagHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc11020()); + } + [PacketHandler(Command.Cs11601)] - static void GetEmojiInfoHandler(Connection connection, Packet packet) - { + static void GetEmojiInfoHandler(Connection connection, Packet packet) { connection.Send(new Sc11602()); } [PacketHandler(Command.Cs11603)] - static void FetchSecondaryPasswordHandler(Connection connection, Packet packet) - { + static void FetchSecondaryPasswordHandler(Connection connection, Packet packet) { connection.Send(new Sc11604()); } [PacketHandler(Command.Cs11017)] - static void StageDropListHandler(Connection connection, Packet packet) - { + static void StageDropListHandler(Connection connection, Packet packet) { connection.Send(new Sc11018()); } [PacketHandler(Command.Cs11401)] - static void ChangeChatRoomHandler(Connection connection, Packet packet) - { + static void ChangeChatRoomHandler(Connection connection, Packet packet) { var req = packet.Decode(); - connection.Send(new Sc11402() - { + connection.Send(new Sc11402() { Result = 0, RoomId = req.RoomId }); } } - static class P11ConnectionNotifyExtensions - { - public static void NotifyResourceList(this Connection connection) - { - if (connection.player is not null) - { - connection.Send(new Sc11004() - { + static class P11ConnectionNotifyExtensions { + public static void NotifyResourceList(this Connection connection) { + if (connection.player is not null) { + connection.Send(new Sc11004() { ResourceLists = connection.player.Resources.Select(x => new Resource() { Num = x.Num, Type = x.Id }).ToList() }); } } - public static void NotifyPlayerData(this Connection connection) - { - if (connection.player is not null) - { - connection.Send(new Sc11003() - { + public static void NotifyPlayerData(this Connection connection) { + if (connection.player is not null) { + connection.Send(new Sc11003() { Id = connection.player.Uid, Name = connection.player.Name, Level = connection.player.Level, Exp = connection.player.Exp, Adv = connection.player.Adv, ResourceLists = connection.player.Resources.Select(x => new Resource() { Num = x.Num, Type = x.Id }).ToList(), - Characters = [1], - ShipBagMax = 150, - EquipBagMax = 350, - GmFlag = 1, - Rank = 1, - GuideIndex = 1000000, - ChatRoomId = 1, + Characters = connection.player.Characters, + WinCount = connection.player.WinCount, + AttackCount = connection.player.AttackCount, + ShipBagMax = connection.player.ShipBagMax, + EquipBagMax = connection.player.EquipBagMax, + GmFlag = connection.player.GmFlag, + Rank = connection.player.Rank, + PvpAttackCount = connection.player.PvpAttackCount, + PvpWinCount = connection.player.PvpWinCount, + CollectAttackCount = connection.player.CollectAttackCount, + GuideIndex = connection.player.GuideIndex, + BuyOilCount = connection.player.BuyOilCount, + ChatRoomId = connection.player.ChatRoomId, + MaxRank = connection.player.MaxRank, + AccPayLv = connection.player.AccPayLv, + GuildWaitTime = connection.player.GuildWaitTime, + ChatMsgBanTime = connection.player.ChatMsgBanTime, + ThemeUploadNotAllowedTime = connection.player.ThemeUploadNotAllowedTime, + RandomShipMode = connection.player.RandomShipMode, + MarryShip = connection.player.MarryShip, + ChildDisplay = connection.player.ChildDisplay, + StoryLists = connection.player.StoryLists, + FlagLists = connection.player.FlagLists, + MedalIds = connection.player.MedalIds, + CartoonReadMarks = connection.player.CartoonReadMarks, + CartoonCollectMarks = connection.player.CartoonCollectMarks, + RandomShipLists = connection.player.RandomShipLists, + Soundstories = connection.player.Soundstories, + CardLists = connection.player.CardLists, + CdLists = connection.player.CdLists, + IconFrameLists = connection.player.IconFrameLists, + ChatFrameLists = connection.player.ChatFrameLists, + RefundShopInfoLists = connection.player.RefundShopInfoLists, + TakingShipLists = connection.player.TakingShipLists, RegisterTime = (uint)new DateTimeOffset(connection.player.CreatedAt).ToUnixTimeSeconds(), - ShipCount = (uint)connection.player.Ships.Count, - CommanderBagMax = 40, + ShipCount = connection.player.ShipCount, + CommanderBagMax = connection.player.CommanderBagMax, Display = connection.player.DisplayInfo, - Appreciation = new() + Appreciation = connection.player.Appreciation, }); } } - public static void NotifyRefluxData(this Connection connection) - { + public static void NotifyRefluxData(this Connection connection) { connection.Send(new Sc11752()); } - public static void NotifyActivityData(this Connection connection) - { + public static void NotifyActivityData(this Connection connection) { connection.Send(new Sc11200()); } } diff --git a/BLHX.Server.Game/Handlers/P12.cs b/BLHX.Server.Game/Handlers/P12.cs index ef2d81d..2e0cdc0 100644 --- a/BLHX.Server.Game/Handlers/P12.cs +++ b/BLHX.Server.Game/Handlers/P12.cs @@ -1,13 +1,16 @@ using BLHX.Server.Common.Proto; using BLHX.Server.Common.Proto.p12; +using BLHX.Server.Common.Utils; +using BLHX.Server.Common.Proto.common; +using BLHX.Server.Common.Proto.p11; +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Database; +using BLHX.Server.Game.Managers; -namespace BLHX.Server.Game.Handlers -{ - internal static class P12 - { +namespace BLHX.Server.Game.Handlers { + internal static class P12 { [PacketHandler(Command.Cs12102, SaveDataAfterRun = true)] - static void UpdateFleetHandler(Connection connection, Packet packet) - { + static void UpdateFleetHandler(Connection connection, Packet packet) { var fleet = packet.Decode(); var toUpdate = connection.player.Fleets.Find(x => x.Id == fleet.Id); @@ -20,48 +23,99 @@ namespace BLHX.Server.Game.Handlers } [PacketHandler(Command.Cs12202, SaveDataAfterRun = true)] - static void SetShipSkinHandler(Connection connection, Packet packet) - { + static void SetShipSkinHandler(Connection connection, Packet packet) { var req = packet.Decode(); if (connection.player.Ships.Any(x => x.Id == req.ShipId)) connection.player.Ships.First(x => x.Id == req.ShipId).SkinId = req.SkinId; connection.Send(new Sc12203()); } + + [PacketHandler(Command.Cs12002, SaveDataAfterRun = true)] + static void BuildShipHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + // Id: gacha banner id + // Count: number of batch builds + // cost type: 1 wisdom cube + 1500 coin for each gacha i guess? + + // TODO: remove the resources used from player resources + + if (!BuildManager.Instance.BatchBuildShip(req.Id, req.Count)) + Logger.c.Log("Build capacity is full or something went wrong"); + + connection.Send(new Sc12003() { + BuildInfoes = BuildManager.Instance.ToBuildInfoes() + }); + } + + [PacketHandler(Command.Cs12008, SaveDataAfterRun = true)] + static void BuildShipImmediatelyHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc12009() { PosLists = req.PosLists }); + } + + [PacketHandler(Command.Cs12043, SaveDataAfterRun = true)] + static void GetShipHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + // pos: position in build, Tid: banner id? + connection.Send(new Sc12044() { + infoLists = BuildManager.Instance.ToInfoLists() + }); + } + + [PacketHandler(Command.Cs12025, SaveDataAfterRun = true)] + static void GetShipAfterHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc12026() { + ShipLists = BuildManager.Instance.GetBuildResults(req.PosLists, connection.player.Uid) + }); + + } + + [PacketHandler(Command.Cs12045, SaveDataAfterRun = true)] + static void GetShipConfirmHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + BuildManager.Instance.ClearBuilds(); + + connection.Send(new Sc12046()); + } } - static class P12ConnectionNotifyExtensions - { - public static void NotifyShipData(this Connection connection) - { - if (connection.player is not null) - { - connection.Send(new Sc12001() - { + static class P12ConnectionNotifyExtensions { + public static void NotifyShipData(this Connection connection) { + if (connection.player is not null) { + connection.Send(new Sc12001() { Shiplists = connection.player.Ships.Select(x => x.ToProto()).ToList() }); } } - public static void NotifyShipSkinData(this Connection connection) - { + public static void NotifyShipSkinData(this Connection connection) { connection.Send(new Sc12201() { SkinLists = connection.player.ShipSkins }); } - public static void NotifyFleetData(this Connection connection) - { - if (connection.player is not null) - { - connection.Send(new Sc12101() - { + public static void NotifyFleetData(this Connection connection) { + if (connection.player is not null) { + connection.Send(new Sc12101() { GroupLists = connection.player.Fleets }); } + } - public static void NotifyBuildShipData(this Connection connection) - { - connection.Send(new Sc12024()); + public static void NotifyBuildShipData(this Connection connection) { + connection.Send(new Sc12024() { + WorklistCount = 1, + WorklistLists = BuildManager.Instance.ToBuildInfoes(), + DrawCount1 = 1, + DrawCount10 = 1, + ExchangeCount = 1, + }); } } } diff --git a/BLHX.Server.Game/Handlers/P15.cs b/BLHX.Server.Game/Handlers/P15.cs index 84a39bb..350446e 100644 --- a/BLHX.Server.Game/Handlers/P15.cs +++ b/BLHX.Server.Game/Handlers/P15.cs @@ -1,24 +1,38 @@ using BLHX.Server.Common.Proto.p15; +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Utils; +using BLHX.Server.Common.Proto; -namespace BLHX.Server.Game.Handlers -{ - internal static class P15 - { - } +namespace BLHX.Server.Game.Handlers { + internal static class P15 { + [PacketHandler(Command.Cs15002, SaveDataAfterRun = true)] + static void UseFudaiItemHandler(Connection connection, Packet packet) { + var req = packet.Decode(); - static class P15ConnectionNotifyExtensions - { - public static void NotifyBagData(this Connection connection) - { - connection.Send(new Sc15001() - { - ItemLists = [ - new Iteminfo() { Id = 20001, Count = 5 }, - new Iteminfo() { Id = 15003, Count = 10 }, - new Iteminfo() { Id = 50002, Count = 10 }, - new Iteminfo() { Id = 50001, Count = 10 } - ] + connection.Send(new Sc15003() { + DropLists = [], }); } } + + static class P15ConnectionNotifyExtensions { + + public static void NotifyBagData(this Connection connection) { + //List AllItemsKeys = Data.ItemDataStatistics.Where(data => data.Value.Type == 2 && data.Value.Rarity >= 6).ToDictionary().Keys.ToList(); + List AllItemsKeys = Data.ItemDataStatistics.ToDictionary().Keys.ToList(); + List ItemLists = AllItemsKeys.Select(item_id => new Iteminfo { Id = (uint)item_id, Count = 3954783433 }).ToList(); + + connection.Send(new Sc15001() { ItemLists = ItemLists }); + + //connection.Send(new Sc15001() { + // ItemLists = [ + // new Iteminfo() { Id = 20001, Count = 8394785 }, + // new Iteminfo() { Id = 15003, Count = 10 }, + // new Iteminfo() { Id = 50002, Count = 10 }, + // new Iteminfo() { Id = 50001, Count = 10 } + // ] + //}); + + } + } } diff --git a/BLHX.Server.Game/Handlers/P16.cs b/BLHX.Server.Game/Handlers/P16.cs index 7de16d6..a9a61f6 100644 --- a/BLHX.Server.Game/Handlers/P16.cs +++ b/BLHX.Server.Game/Handlers/P16.cs @@ -1,27 +1,29 @@ using BLHX.Server.Common.Proto; using BLHX.Server.Common.Proto.p16; +using BLHX.Server.Common.Utils; + +namespace BLHX.Server.Game.Handlers { + internal static class P16 { + [PacketHandler(Command.Cs16001, SaveDataAfterRun = true)] + static void DormTrainShoppingHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc16002() { }); + } -namespace BLHX.Server.Game.Handlers -{ - internal static class P16 - { [PacketHandler(Command.Cs16104)] - static void GetChargeListHandler(Connection connection, Packet packet) - { + static void GetChargeListHandler(Connection connection, Packet packet) { connection.Send(new Sc16105()); } [PacketHandler(Command.Cs16106)] - static void GetExchangeItemHandler(Connection connection, Packet packet) - { + static void GetExchangeItemHandler(Connection connection, Packet packet) { connection.Send(new Sc16107()); } } - static class P16ConnectionNotifyExtensions - { - public static void NotifyShopMonthData(this Connection connection) - { + static class P16ConnectionNotifyExtensions { + public static void NotifyShopMonthData(this Connection connection) { connection.Send(new Sc16200() { Month = (uint)DateTime.Now.Month }); } } diff --git a/BLHX.Server.Game/Handlers/P19.cs b/BLHX.Server.Game/Handlers/P19.cs index 63ffac0..842bc17 100644 --- a/BLHX.Server.Game/Handlers/P19.cs +++ b/BLHX.Server.Game/Handlers/P19.cs @@ -1,17 +1,40 @@ -using BLHX.Server.Common.Proto.p19; +using BLHX.Server.Common.Proto; +using BLHX.Server.Common.Proto.p19; +using BLHX.Server.Common.Utils; -namespace BLHX.Server.Game.Handlers -{ - internal static class P19 - { +namespace BLHX.Server.Game.Handlers { + internal static class P19 { + [PacketHandler(Command.Cs19002, SaveDataAfterRun = true)] + static void AddShipHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc19003() {}); + connection.Send(new Sc19003() {}); + } + + [PacketHandler(Command.Cs19004, SaveDataAfterRun = true)] + static void ShipExitHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc19005() { }); + } + + [PacketHandler(Command.Cs19103, SaveDataAfterRun = true)] + static void GetOSSArgsHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc19104() { + AccessId = "1", + AccessSecret = "1", + ExpireTime = (uint)new DateTimeOffset(DateTime.Now.AddDays(31)).ToUnixTimeSeconds(), + SecurityToken = "3874839" // idk what this is so i put a random as token + }); + } } - static class P19ConnectionNotifyExtensions - { - public static void NotifyDormData(this Connection connection) - { - connection.Send(new Sc19001() - { + static class P19ConnectionNotifyExtensions { + public static void NotifyDormData(this Connection connection) { + connection.Send(new Sc19001() { Lv = 1, FloorNum = 1, ExpPos = 2, diff --git a/BLHX.Server.Game/Handlers/P33.cs b/BLHX.Server.Game/Handlers/P33.cs index 45d1537..aa6caff 100644 --- a/BLHX.Server.Game/Handlers/P33.cs +++ b/BLHX.Server.Game/Handlers/P33.cs @@ -1,16 +1,21 @@ -using BLHX.Server.Common.Proto.p33; +using BLHX.Server.Common.Proto; +using BLHX.Server.Common.Proto.p33; -namespace BLHX.Server.Game.Handlers -{ - internal class P33 - { +namespace BLHX.Server.Game.Handlers { + internal class P33 { + [PacketHandler(Command.Cs33000, SaveDataAfterRun = true)] + static void ReqWorldCheckHandler(Connection connection, Packet packet) { + var req = packet.Decode(); + + connection.Send(new Sc33001() { + IsWorldOpen = 0, + }); + } + } - static class P33ConnectionNotifyExtensions - { - public static void NotifyWorldData(this Connection connection) - { - connection.Send(new Sc33114() - { + static class P33ConnectionNotifyExtensions { + public static void NotifyWorldData(this Connection connection) { + connection.Send(new Sc33114() { IsWorldOpen = 1 }); } diff --git a/BLHX.Server.Game/Managers/BuildManager.cs b/BLHX.Server.Game/Managers/BuildManager.cs new file mode 100644 index 0000000..53daf06 --- /dev/null +++ b/BLHX.Server.Game/Managers/BuildManager.cs @@ -0,0 +1,149 @@ +using BLHX.Server.Common.Proto.common; +using System; + +using Microsoft.EntityFrameworkCore; +using System.ComponentModel.DataAnnotations; +using BLHX.Server.Common.Data; +using BLHX.Server.Common.Database; +using BLHX.Server.Common.Utils; +using static System.Runtime.InteropServices.JavaScript.JSType; + +namespace BLHX.Server.Game.Managers { + + public class BuildManager { + + private static BuildManager instance = null; + private BuildManager() { } + + public static BuildManager Instance { + get { + if (instance == null) + instance = new BuildManager(); + + return instance; + } + set => instance = value; + } + + public uint BuildCapacity { get; set; } = 10; + + public List BuildData { get; set; } = []; + + public bool BuildShip(uint buildId) { + DateTime time = DateTime.Now; + DateTime finishTime = time.AddSeconds(10); // TODO: figure out which cfg is this stored at + + if (BuildData.Count + 1 > BuildCapacity) + return false; + + BuildData.Add(new BuildData() { + Pos = (uint)BuildData.Count + 1, + Tid = 1, // no idea whats this + BuildId = buildId, + FinishTime = (uint)new DateTimeOffset(finishTime).ToUnixTimeSeconds(), + Time = (uint)new DateTimeOffset(time).ToUnixTimeSeconds(), + }); + + return true; + } + + public bool BatchBuildShip(uint buildId, uint count) { + if (BuildData.Count + count > BuildCapacity) + return false; + + for (int i = 0; i < count; i++) + BuildShip(buildId); + + return true; + } + + public List GetBuildResults(List posList, uint playerUid) { // posList: build position list: so like 1, 2, 3, 4, 5 + List buildResults = new List(); + + foreach (uint buildPosId in posList) { + BuildData buildData = BuildData[(int)buildPosId - 1]; + + Shipinfo receivedShip = CreateShipFromId(HandleGacha(buildData.BuildId), playerUid).ToProto(); + + buildResults.Add(receivedShip); + } + + return buildResults; + } + + public List GetAllBuildResults(uint playerUid) { + List posListAll = new List(); + + for (int i = 1; i <= BuildCapacity; i++) + posListAll.Add((uint)i); + + return GetBuildResults(posListAll, playerUid); + } + + public uint HandleGacha(uint bannerId) { // for now i changed the entire pool of bannerId = 2 to URs + uint[] characterPool = Data.ActivityShipCreate[bannerId].PickupList; + + int resultRarity = RNG.NextShipRarity(); + // handle gacha rates here + + return characterPool[RNG.Next(characterPool.Length)]; + } + + // ayo who named these two :skull: + public List ToInfoLists() { + return BuildData.Select(data => new BLHX.Server.Common.Proto.p12.BuildInfo() { Pos = data.Pos, Tid = data.Tid }).ToList(); + } + + // this one is not capitalized Build(i)nfo + public List ToBuildInfoes() { + return BuildData.Select(data => new BLHX.Server.Common.Proto.common.Buildinfo() { BuildId = data.BuildId, FinishTime = data.FinishTime, Time = data.Time,}).ToList(); + } + + public void ClearBuilds() { + BuildData.Clear(); + } + + public static ShipDataStatistics GetShipInfoFromId(uint shipId) { + return Data.ShipDataStatistics[(int)shipId]; + } + + public static PlayerShip CreateShipFromId(uint shipId, uint playerUid) { + if (!Data.ShipDataTemplate.TryGetValue((int)shipId, out var shipTemplate)) + throw new InvalidDataException($"Ship template {shipId} not found!"); + + var ship = new PlayerShip() { + TemplateId = shipId, + Level = 1, + EquipInfoLists = [ + new EquipskinInfo() { Id = shipTemplate.EquipId1 }, + new EquipskinInfo() { Id = shipTemplate.EquipId2 }, + new EquipskinInfo() { Id = shipTemplate.EquipId3 }, + new EquipskinInfo(), + new EquipskinInfo(), + ], + Energy = shipTemplate.Energy, + SkillIdLists = shipTemplate.BuffList.Select(x => new Shipskill() { SkillId = x, SkillLv = 1 }).ToList(), + Intimacy = 5000, + + PlayerUid = playerUid + }; + + return ship; + } + + } + + [PrimaryKey(nameof(Pos))] + public class BuildData { + [Key] + public uint Pos { get; set; } + + public uint Tid { get; set; } + + public uint Time { get; set; } + + public uint FinishTime { get; set; } + + public uint BuildId { get; set; } + } +} diff --git a/BLHX.Server.PcapParser/App.config b/BLHX.Server.PcapParser/App.config index 5f986e8..a58a46e 100644 --- a/BLHX.Server.PcapParser/App.config +++ b/BLHX.Server.PcapParser/App.config @@ -1,13 +1,13 @@ - + - + - - + + diff --git a/BLHX.Server.PcapParser/BLHX.Server.PcapParser.csproj b/BLHX.Server.PcapParser/BLHX.Server.PcapParser.csproj index 51cd527..6954ac4 100644 --- a/BLHX.Server.PcapParser/BLHX.Server.PcapParser.csproj +++ b/BLHX.Server.PcapParser/BLHX.Server.PcapParser.csproj @@ -8,7 +8,7 @@ Exe BLHX.Server.PcapParser BLHX.Server.PcapParser - v4.8.1 + v4.8 512 true true